Ask Your Question
0

One single webcam. I have to feed the data for 2 different face detecting algorithms simultaneously. Help please.

asked 2014-10-09 03:16:11 -0600

saamishon gravatar image

One single webcam. I have to feed the data for 2 different face detecting algorithms simultaneously. Help please.

edit retag flag offensive close merge delete

Comments

1

Wow :) thank you so much. I'm just a beginner. This is perfect.

saamishon gravatar imagesaamishon ( 2014-10-09 03:49:27 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2014-10-09 04:19:06 -0600

Since it suits your needs, please accept this as the solution.

Basically what you should do is

  • Grab the webcam frame
  • Make a deep clone of the frame two times, one clone_frame and one original_frame, this can be done with the Mat.clone() function.
  • Apply detection on both frame and clone_frame, but with different detection algorithms
  • Now visualize all detections on original_frame

Does this suit your needs?

edit flag offensive delete link more

Question Tools

Stats

Asked: 2014-10-09 03:16:11 -0600

Seen: 142 times

Last updated: Oct 09 '14