OpenCV: Difference between revisions

From OLPC
Jump to navigation Jump to search
m (+xo info)
(added to Camera Category and misc changes)
Line 13: Line 13:




=== XO Laptop ===
=== Face Recognition ===
[http://eclecti.cc/code/face-detection-on-the-olpc-xo Nirav Patel reports] success in basic image recognition on the XO Laptop (with xo-cam) with good timings.
[http://eclecti.cc/code/face-detection-on-the-olpc-xo Nirav Patel reports] success in basic image recognition on the XO Laptop (with xo-cam) with good timings using OpenCV and xawtv.


Sources: [http://eclecti.cc/files/2008/03/face.py face.py] [http://eclecti.cc/files/2008/03/haarcascade_frontalface_alt.xml haarcascade_frontalface_alt.xml]
Sources: [http://eclecti.cc/files/2008/03/face.py face.py] [http://eclecti.cc/files/2008/03/haarcascade_frontalface_alt.xml haarcascade_frontalface_alt.xml]
Line 23: Line 23:
* [http://sourceforge.net/projects/opencvlibrary/ OpenCV SourceForge] site
* [http://sourceforge.net/projects/opencvlibrary/ OpenCV SourceForge] site
* [http://www.intel.com/technology/computing/opencv/index.htm OpenCV] homepage at intel
* [http://www.intel.com/technology/computing/opencv/index.htm OpenCV] homepage at intel


[[Category:Camera]]

Revision as of 23:46, 20 March 2008

About

Wikipedia: OpenCV

OpenCV is an open source computer vision library originally developed by Intel. It is free for commercial and research use under a BSD license. The library is cross-platform, and runs on Mac OS X, Windows and Linux. It focuses mainly on real-time image processing, as such, if it finds Intel's Integrated Performance Primitives (IPP) on the system, it will use these commercial optimized routines to accelerate itself.
OpenCV's application areas include:
  • Human-Computer Interface (HCI)
  • Object Identification
  • Segmentation and Recognition
  • Face Recognition
  • Gesture Recognition
  • Motion Tracking
  • ...


Face Recognition

Nirav Patel reports success in basic image recognition on the XO Laptop (with xo-cam) with good timings using OpenCV and xawtv.

Sources: face.py haarcascade_frontalface_alt.xml


Links