Popular recipes tagged "opencv" but not "computer_vision"http://code.activestate.com/recipes/tags/opencv-computer_vision/2012-09-13T16:07:21-07:00ActiveState Code RecipesTest various OpenCV feature detectors in Python (Python)
2012-09-13T16:07:21-07:00J W Jhttp://code.activestate.com/recipes/users/4181154/http://code.activestate.com/recipes/578261-test-various-opencv-feature-detectors-in-python/
<p style="color: grey">
Python
recipe 578261
by <a href="/recipes/users/4181154/">J W J</a>
(<a href="/recipes/tags/feature_detection/">feature_detection</a>, <a href="/recipes/tags/opencv/">opencv</a>).
</p>
<p>Iterates through all feature detectors (that didn't crash my computer) and plots the point results.</p>
Python+OpenCV: Camera frame grab and sobel display (Python)
2012-03-22T07:21:35-07:00J W Jhttp://code.activestate.com/recipes/users/4181154/http://code.activestate.com/recipes/578085-pythonopencv-camera-frame-grab-and-sobel-display/
<p style="color: grey">
Python
recipe 578085
by <a href="/recipes/users/4181154/">J W J</a>
(<a href="/recipes/tags/opencv/">opencv</a>, <a href="/recipes/tags/python/">python</a>).
Revision 2.
</p>
<p>A couple snippets grabbed from other sources and put together here.
Demonstrates:
Conversion to greyscale: cv.CvtColor,
Sobel operator: cv.Sobel,
Smoothing: cv.Smooth</p>