You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
247 B
Python
14 lines
247 B
Python
11 years ago
|
#!/usr/bin/python2.7
|
||
|
|
||
|
import cv2
|
||
|
import test_swig_opencv
|
||
|
|
||
|
img = cv2.imread("test_swig_opencv.jpg")
|
||
|
|
||
|
o = test_swig_opencv.UsefulStuffUsingOpenCV()
|
||
|
o.doit(img)
|
||
|
|
||
|
cv2.namedWindow("test", flags=cv2.WINDOW_NORMAL)
|
||
|
cv2.imshow("test", img)
|
||
|
cv2.waitKey(0)
|