MY code is to click a button, then start webcam to perform face detection. And the video sequence is shown in the imagebox which is a emgucv tool.
What i want to do in next step is extract the image automatically into a new picturebox or imagebox if the face is detected. Is there any method to extract the detected image base on the current code?
private void captureButton_Click(object sender, EventArgs e)
{
if (_capture == null)
{
try
{
_capture = new Capture();
}
catch (NullReferenceException excpt)
{
MessageBox.Show(excpt.Message);
}
}
if (_capture != null)
{
if (_captureInProgress)
{ //stop the capture
Application.Idle -= new EventHandler(ProcessFrame);
captureButton.Text = "Start";
}
else
{
//start the capture
captureButton.Text = "Stop";
Application.Idle += new EventHandler(ProcessFrame);
}
_captureInProgress = !_captureInProgress;
}
}
private void ProcessFrame(object sender, EventArgs arg)
{
Image<Bgr, Byte> frame = _capture.QueryFrame();
captureImageBox.Image = frame;
Image<Gray, Byte> gray = frame.Convert<Gray, Byte>();
gray._EqualizeHist();
HaarCascade face = new HaarCascade("haarcascade_frontalface_alt_tree.xml");
MCvAvgComp[][] facesDetected = gray.DetectHaarCascade(face, 1.05, 3, Emgu.CV.CvEnum.HAAR_DETECTION_TYPE.FIND_BIGGEST_OBJECT,new Size(20, 20));
foreach (MCvAvgComp f in facesDetected[0])
{
//draw the face detected in the 0th (gray) channel with blue color
captureImageBox.Image = frame;
frame.Draw(f.rect, new Bgr(Color.Blue), 2);
captureImageBox.Image = frame;
//Set the region of interest on the faces
gray.ROI = f.rect;
captureImageBox.Image = frame;
}