Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(2) | Derive(0) | Import(0)
src/p/c/PCV-HEAD/examples/ch2_harris_corners.py PCV(Download)
harrisim = harris.compute_harris_response(im) filtered_coords = harris.get_harris_points(harrisim, 10, threshold=0.01) harris.plot_harris_points(im, filtered_coords) # plot only 200 strongest harris.plot_harris_points(im, filtered_coords[:200])