Difference between revisions of "Face Detection from IronPython"
Jump to navigation
Jump to search
AnkitSarkar (talk | contribs) m (corrected typos) |
|||
Line 1: | Line 1: | ||
− | Note: This example is based on Emgu CV | + | Note: This example is based on Emgu CV 2.2.0.0 |
Assume that you have followed everything from [[Setting up Emgu CV and IronPython]]. This example is going to show you how to do face detection from IronPython. | Assume that you have followed everything from [[Setting up Emgu CV and IronPython]]. This example is going to show you how to do face detection from IronPython. | ||
− | First copy the lena.jpg file from [[OpenCV]] sample directory to the IronPython folder. Then copy the | + | First copy the lena.jpg file from [[OpenCV]] sample directory to the IronPython folder. Then copy the haarcascade_frontalface_alt_tree.xml file to the IronPython folder as well. Then follow the steps below: |
*Create the detector by calling | *Create the detector by calling | ||
<source lang="python"> | <source lang="python"> | ||
− | detector = HaarCascade(" | + | detector = HaarCascade("haarcascade_frontalface_alt_tree.xml") |
</source> | </source> | ||
*Read the image | *Read the image | ||
Line 19: | Line 19: | ||
*Draw the objects | *Draw the objects | ||
<source lang="python"> | <source lang="python"> | ||
− | for obj in objectsDetected: image.Draw[float](obj, Gray(255), 1) | + | for obj in objectsDetected: image.Draw[float](obj.rect, Gray(255), 1) |
</source> | </source> | ||
*Display the image | *Display the image |
Revision as of 21:13, 28 October 2010
Note: This example is based on Emgu CV 2.2.0.0
Assume that you have followed everything from Setting up Emgu CV and IronPython. This example is going to show you how to do face detection from IronPython.
First copy the lena.jpg file from OpenCV sample directory to the IronPython folder. Then copy the haarcascade_frontalface_alt_tree.xml file to the IronPython folder as well. Then follow the steps below:
- Create the detector by calling
detector = HaarCascade("haarcascade_frontalface_alt_tree.xml")
- Read the image
image = Image[Gray, Byte]("lena.jpg")
- Detect the objects
objectsDetected = image.DetectHaarCascade(detector)[0]
- Draw the objects
for obj in objectsDetected: image.Draw[float](obj.rect, Gray(255), 1)
- Display the image
ImageViewer.Show(image)