1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

initial commit

This commit is contained in:
Dmitriy Anisimov
2014-09-13 18:28:41 +04:00
parent cff5e3ee88
commit 1007c06d44
159 changed files with 118 additions and 5119 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
'''
This example illustrates how to use cv2.HoughCircles() function.
Usage: ./houghcircles.py [<image_name>]
image argument defaults to ../cpp/board.jpg
image argument defaults to ../data/board.jpg
'''
import cv2
@@ -15,7 +15,7 @@ print __doc__
try:
fn = sys.argv[1]
except:
fn = "../cpp/board.jpg"
fn = "../data/board.jpg"
src = cv2.imread(fn, 1)
img = cv2.cvtColor(src, cv2.COLOR_BGR2GRAY)