summaryrefslogtreecommitdiffstats
path: root/misc/README.rst
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2013-03-20 08:47:48 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2013-03-20 08:47:48 +0100
commit71acacfd31e36fcb314d0d75306d26f9518e1d6a (patch)
treef213e8d4c1c38a84d0fc0e5fb96e51a0cd452ab8 /misc/README.rst
parent595c46516de195b2660ec4111cbd3564b9157127 (diff)
downloaduca-71acacfd31e36fcb314d0d75306d26f9518e1d6a.tar.gz
uca-71acacfd31e36fcb314d0d75306d26f9518e1d6a.tar.bz2
uca-71acacfd31e36fcb314d0d75306d26f9518e1d6a.tar.xz
uca-71acacfd31e36fcb314d0d75306d26f9518e1d6a.zip
Remove old OpenCV patch
Diffstat (limited to 'misc/README.rst')
-rw-r--r--misc/README.rst29
1 files changed, 0 insertions, 29 deletions
diff --git a/misc/README.rst b/misc/README.rst
deleted file mode 100644
index baf0f22..0000000
--- a/misc/README.rst
+++ /dev/null
@@ -1,29 +0,0 @@
-================================
-Patches for third party software
-================================
-
-OpenCV
-======
-
-OpenCV is a cross-platform, open source computer vision toolkit. We provide
-patches that integrate libuca in OpenCV in order to use all UCA-supported
-cameras within OpenCV like::
-
- CvCapture *capture = cvCaptureFromCAM(CV_CAP_UCA);
- cvNamedWindow("foo", CV_WINDOW_AUTOSIZE);
-
- IplImage *frame;
- frame = cvQueryFrame(capture);
- cvShowImage("foo", frame);
-
- cvDestroyWindow("foo");
- cvReleaseCapture(&capture);
-
-Patches
--------
-
-We only supply patches for stable releases of OpenCV. Apply them using
-
- ``patch -p0 < opencv-x.y.z.patch``
-
-inside the top-level directory of the source directory of OpenCV x.y.z.