What is the correct way to create Python bindings for missing functions in OpenCV?
For example, considering an already wrapped simple function (say cv::calcHist()
in opencv/modules/imgproc/src/histogram.cpp
) as an example:
- Could someone explain what code changes in which files? I just expect some simple examples and further references that I can look up myself.
- Are there any best practices to follow when writing Python bindings for OpenCV?
Thanks!