¡@

Home 

python Programming Glossary: cv.smooth

What are the correct usage/parameter values for HoughCircles in OpenCV for Iris detection?

http://stackoverflow.com/questions/10716464/what-are-the-correct-usage-parameter-values-for-houghcircles-in-opencv-for-iris

frame 8 1 cv.CvtColor frame grayImg cv.CV_BGR2GRAY cv.Smooth grayImg grayImg cv.CV_GAUSSIAN 9 9 cv.Canny grayImg grayImg.. processed 5 70 3 #smooth to reduce noise a bit more cv.Smooth processed processed cv.CV_GAUSSIAN 7 7 cv.HoughCircles processed..

How do I track motion using OpenCV in Python?

http://stackoverflow.com/questions/3374828/how-do-i-track-motion-using-opencv-in-python

self.capture # Smooth to get rid of false positives cv.Smooth color_image color_image cv.CV_GAUSSIAN 3 0 if first difference..

Python OpenCV: Detecting a general direction of movement?

http://stackoverflow.com/questions/4496063/python-opencv-detecting-a-general-direction-of-movement

self.capture # Smooth to get rid of false positives cv.Smooth color_image color_image cv.CV_GAUSSIAN 3 0 if not difference..

Python and OpenCV. How do I detect all (filled)circles/round objects in an image?

http://stackoverflow.com/questions/5368449/python-and-opencv-how-do-i-detect-all-filledcircles-round-objects-in-an-image

im gray cv.CV_BGR2GRAY cv.Canny gray edges 50 200 3 cv.Smooth gray gray cv.CV_GAUSSIAN 9 9 storage cv.CreateMat im.rows 1..

writing robust (color and size invariant) circle detection with opencv (based on Hough transform or other features)

http://stackoverflow.com/questions/9860667/writing-robust-color-and-size-invariant-circle-detection-with-opencv-based-on

orig 8 1 processed cv.CreateImage cv.GetSize orig 8 1 cv.Smooth orig orig cv.CV_GAUSSIAN 3 3 cv.CvtColor orig grey_scale cv.CV_RGB2GRAY.. processed None 10 cv.Canny processed processed 5 70 3 cv.Smooth processed processed cv.CV_GAUSSIAN 15 15 storage cv.CreateMat..