Python Cookbook - Opencv v2
Python Cookbook - Opencv v2
Here is a collection of code fragments demonstrating some features of the OpenCV Python bind
Convert an image
>>> import cv >>> im = cv.LoadImageM("building.jpg") >>> print type(im) <type 'cv.cvmat'> >>> cv.SaveImage("foo.png", im)
Resize an image
To resize an image in OpenCV, create a destination image of the appropriate size, then call Re
>>> >>> >>> >>> import cv original = cv.LoadImageM("building.jpg") thumbnail = cv.CreateMat(original.rows / 10, original.cols / 10, cv.CV_8UC3) cv.Resize(original, thumbnail)
Using GoodFeaturesToTrack
To find the 10 strongest corner features in an image, use GoodFeaturesToTrack like this:
>>> import cv >>> img = cv.LoadImageM("building.jpg", cv.CV_LOAD_IMAGE_GRAYSCALE) >>> eig_image = cv.CreateMat(img.rows, img.cols, cv.CV_32FC1) >>> temp_image = cv.CreateMat(img.rows, img.cols, cv.CV_32FC1) >>> for (x,y) in cv.GoodFeaturesToTrack(img, eig_image, temp_image, 10, 0.04, 1.0 ... print "good feature at", x,y good feature at 198.0 514.0 good feature at 791.0 260.0 good feature at 370.0 467.0 good feature at 374.0 469.0 good feature at 490.0 520.0 good feature at 262.0 278.0 good feature at 781.0 134.0 good feature at 3.0 247.0 good feature at 667.0 321.0 good feature at 764.0 304.0
Using GetSubRect
GetSubRect returns a rectangular part of another image. It does this without copying any data.
>>> >>> >>> >>> import cv img = cv.LoadImageM("building.jpg") sub = cv.GetSubRect(img, (60, 70, 32, 32)) cv.SetZero(sub)
# sub is 32x32 patch within img # clear sub to zero, which also cl
>>> import cv >>> mat = cv.CreateMat(5, 5, cv.CV_32FC1) >>> cv.Set(mat, 1.0) >>> mat[3,1] += 0.375 >>> print mat[3,1] 1.375 >>> print [mat[3,i] for i in range(5)] [1.0, 1.375, 1.0, 1.0, 1.0]
also, most OpenCV functions can work on NumPy arrays directly, for example:
>>> picture = numpy.ones((640, 480)) >>> cv.Smooth(picture, picture, cv.CV_GAUSSIAN, 15, 15)
Given a 2D array, the fromarray function (or the implicit version shown above) returns a single size. For a 3D array of size , it returns a CvMat sized with channels. Alternatively, use fromarray with the allowND option to always return a CvMatND .
OpenCV to pygame