From 1f53b65511de63bc16db29751b1224c81adc730e Mon Sep 17 00:00:00 2001 From: sanuj Date: Thu, 5 Mar 2015 19:57:55 +0530 Subject: [PATCH] Fix documentation in python binding tutorial --- .../py_bindings/py_bindings_basics/py_bindings_basics.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/py_tutorials/py_bindings/py_bindings_basics/py_bindings_basics.markdown b/doc/py_tutorials/py_bindings/py_bindings_basics/py_bindings_basics.markdown index ed2d3510f3..e256bcea03 100644 --- a/doc/py_tutorials/py_bindings/py_bindings_basics/py_bindings_basics.markdown +++ b/doc/py_tutorials/py_bindings/py_bindings_basics/py_bindings_basics.markdown @@ -49,7 +49,7 @@ pyopencv_generated_\*.h files). But there may be some basic OpenCV datatypes lik Size. They need to be extended manually. For example, a Mat type should be extended to Numpy array, Size should be extended to a tuple of two integers etc. Similarly, there may be some complex structs/classes/functions etc. which need to be extended manually. All such manual wrapper functions -are placed in modules/python/src2/pycv2.hpp. +are placed in modules/python/src2/cv2.cpp. So now only thing left is the compilation of these wrapper files which gives us **cv2** module. So when you call a function, say res = equalizeHist(img1,img2) in Python, you pass two numpy arrays and