]> rtime.felk.cvut.cz Git - opencv.git/blobdiff - opencv/doc/cxcore_introduction.tex
new test category python_fragments from documentation
[opencv.git] / opencv / doc / cxcore_introduction.tex
index fca070fbae69b9b82bce41897891aad6c739378e..4e3f90e2ad2d9dd6870544109a97b0b2d6cea40d 100644 (file)
@@ -463,7 +463,7 @@ To resize an image in OpenCV, create a destination image of the appropriate size
 \begin{lstlisting}
 >>> import cv
 >>> im = cv.LoadImageM("building.jpg", 1)
->>> dst = cv.CreateImage(cv.GetSize(im), cv.IPL_DEPTH_16S, 3);
+>>> dst = cv.CreateImage(cv.GetSize(im), cv.IPL_DEPTH_16S, 3)
 >>> laplace = cv.Laplace(im, dst)
 >>> cv.SaveImage("foo-laplace.png", dst)
 \end{lstlisting}