Update to 2.0.0 tree from current Fremantle build
[opencv] / samples / python / minidemo.py
diff --git a/samples/python/minidemo.py b/samples/python/minidemo.py
deleted file mode 100644 (file)
index 15687e2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-import opencv
-from opencv import highgui
-
-highgui.cvNamedWindow("win", highgui.CV_WINDOW_AUTOSIZE)
-cap = highgui.cvCaptureFromFile("/home/asbach/Source/ObjectDetection/older/avi/table.avi")
-img = highgui.cvQueryFrame(cap)
-
-print img
-print "Got frame of dimensions (", img.width, " x ", img.height, " )"
-
-highgui.cvShowImage("win", img)
-highgui.cvMoveWindow("win", 200, 200)
-highgui.cvWaitKey(0)
-
-pilimg = opencv.Ipl2PIL(img)
-print pilimg
-