facedetect: always send facedetect message
The application might like to know, when we don't see the face anymore.
This commit is contained in:
parent
288c6fa26c
commit
fbcee587f4
@ -481,7 +481,9 @@ gst_face_detect_transform_ip (GstOpencvVideoFilter * base, GstBuffer * buf,
|
||||
|
||||
if (filter->cvFaceDetect) {
|
||||
GstMessage *msg = NULL;
|
||||
GstStructure *s;
|
||||
GValue facelist = { 0 };
|
||||
GValue facedata = { 0 };
|
||||
CvSeq *faces;
|
||||
CvSeq *mouth, *nose, *eyes;
|
||||
gint i;
|
||||
@ -507,10 +509,8 @@ gst_face_detect_transform_ip (GstOpencvVideoFilter * base, GstBuffer * buf,
|
||||
#endif
|
||||
);
|
||||
|
||||
if (faces && faces->total > 0) {
|
||||
msg = gst_face_detect_message_new (filter, buf);
|
||||
g_value_init (&facelist, GST_TYPE_LIST);
|
||||
}
|
||||
|
||||
for (i = 0; i < (faces ? faces->total : 0); i++) {
|
||||
CvRect *r = (CvRect *) cvGetSeqElem (faces, i);
|
||||
@ -576,10 +576,6 @@ gst_face_detect_transform_ip (GstOpencvVideoFilter * base, GstBuffer * buf,
|
||||
i, faces->total, r->x, r->y, r->width, r->height,
|
||||
have_eyes, have_nose, have_mouth);
|
||||
|
||||
if (msg) {
|
||||
GValue value = { 0 };
|
||||
GstStructure *s;
|
||||
|
||||
s = gst_structure_new ("face",
|
||||
"x", G_TYPE_UINT, r->x,
|
||||
"y", G_TYPE_UINT, r->y,
|
||||
@ -616,11 +612,10 @@ gst_face_detect_transform_ip (GstOpencvVideoFilter * base, GstBuffer * buf,
|
||||
"eyes->height", G_TYPE_UINT, sr->height, NULL);
|
||||
}
|
||||
|
||||
g_value_init (&value, GST_TYPE_STRUCTURE);
|
||||
gst_value_set_structure (&value, s);
|
||||
gst_value_list_append_value (&facelist, &value);
|
||||
g_value_unset (&value);
|
||||
}
|
||||
g_value_init (&facedata, GST_TYPE_STRUCTURE);
|
||||
gst_value_set_structure (&facedata, s);
|
||||
gst_value_list_append_value (&facelist, &facedata);
|
||||
g_value_unset (&facedata);
|
||||
|
||||
if (do_display) {
|
||||
CvPoint center;
|
||||
@ -678,12 +673,10 @@ gst_face_detect_transform_ip (GstOpencvVideoFilter * base, GstBuffer * buf,
|
||||
}
|
||||
}
|
||||
|
||||
if (msg) {
|
||||
gst_structure_set_value (msg->structure, "faces", &facelist);
|
||||
g_value_unset (&facelist);
|
||||
gst_element_post_message (GST_ELEMENT (filter), msg);
|
||||
}
|
||||
}
|
||||
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user