how to work on detected faces independently from each other? OpenCV/Processing

Course Queries Syllabus Queries 2 years ago

0 1 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago


I work on a sketch, that should detect faces and give each face their own image.

what the computer does: every time the Computer detects a new face, it becomes "face 0" and gets "image 0" assigned. The result is, the numbers for all the other faces are changing and they are getting a new image assigned as well.

what I want: Every face should get its own image, without changing it, when a new face gets detected.

I hope that you understand me, despite the language barrier. It would be great, if you would help me out with this code.


import gab.opencv.*;
import processing.video.*;
import java.awt.*;


int num = 10;
PImage[] myImageArray = new PImage[num];
Capture video;
OpenCV opencv;


void setup() {

 for (int i=0; ivideo = new Capture(this, 800/2, 600/2);
  opencv = new OpenCV(this, 800/2, 600/2);
  opencv.loadCascade(OpenCV.CASCADE_FRONTALFACE);  

  video.start();
}


void draw() {
  scale(2);
  opencv.loadImage(video);

  image(video, 0, 0 );

  Rectangle[] faces = opencv.detect();
  println(faces.length);                    
 faces = opencv.detect();


  for (int i = 0; i < faces.length; i++) {
    println(faces[i].x + "," + faces[i].y);  
     image(myImageArray[i], faces[i].x-70, faces[i].y-60,
                  faces[i].width+80, faces[i].height+80);
  }
}


void captureEvent(Capture c) {
  c.read();
   }

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.