All the previous files

This commit is contained in:
bendtherules
2014-02-05 10:44:04 +05:30
commit 12135f9a60
160 changed files with 8827 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import cv2
# read image
im = cv2.imread("Photo0094.jpg")
h,w = im.shape[:2]
print h,w
# save image
cv2.imwrite("result.png",im)