I am trying to detect face using (Gstreamer open-cv) plugin, using following pipeline.
Face detection from image
gst-launch-1.0 filesrc location=/home/talview22/Pictures/face.png ! decodebin ! ffmpegcolorspace ! facedetect ! ffmpegcolorspace ! ximagesink
face detection on live feed
gst-launch-1.0 v4l2src ! 'video/x-raw-rgb,width=640,height=480' ! ffmpegcolorspace ! faceblur face-width=40 face-height=40 ! ffmpegcolorspace ! xvimagesink
getting following error,
WARNING: erroneous pipeline: no element "facedetect"
facedetect plugin already installed, I checked.
talview22@talview22-System-Product-Name:/var/www/html/backboneapp$ gst-inspect-1.0 facedetect
Factory Details:
Rank none (0)
Long-name facedetect
Klass Filter/Effect/Video
Description Performs face detection on videos and images, providing detected positions via bus messages
Author Michael Sheldon <mike@mikeasoft.com>
How can I resolve?