Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV function list

Tags:

opencv

I was wondering if there is some sort of resource where I can find all the functions present in OpenCV and their declarations; without much theory of any sort. The problem with the OpenCV guide is that there is too much theory that is involved, and I wish to have a reference that can help me, find the function as and when I want them, something like a function index? I could try the header cpp files or something. I was wondering if there is some sort of online resource already present to that end?

like image 331
Egon Avatar asked Jan 16 '10 19:01

Egon


People also ask

What are the functions of OpenCV?

OpenCV is the huge open-source library for the computer vision, machine learning, and image processing and now it plays a major role in real-time operation which is very important in today's systems. By using it, one can process images and videos to identify objects, faces, or even handwriting of a human.

Which functions are available in OpenCV for computer vision?

OpenCV is a Python library that allows you to perform image processing and computer vision tasks. It provides a wide range of features, including object detection, face recognition, and tracking.

How many algorithms are there in OpenCV?

There are over 500 algorithms and about 10 times as many functions that compose or support those algorithms. OpenCV is written natively in C++ and has a templated interface that works seamlessly with STL containers.

Which OpenCV function is used to import images?

imread/imshow As you can guess from the name of the function, it loads an image in the BGR (Blue-Green-Red) format.


3 Answers

I would highly recommend the C++ interface if you are using OpenCV 2.0, as opposed to the C documentation presented in the other answer.

like image 162
Ray Hidayat Avatar answered Oct 23 '22 21:10

Ray Hidayat


Have you seen this OpenCV index? (appears broken now) Updated: w/ different link to docs:

like image 7
kenny Avatar answered Oct 23 '22 23:10

kenny


I recommend OpenCV C(or C++) reference. The latest version is OpenCV 2.2. You should check it carefully if you come from former versions as this version includes many new features as such as Android app. Moreover, the header files, functions and .lib file are re-organized in a more specific way.

like image 3
Jackypengyu Avatar answered Oct 23 '22 22:10

Jackypengyu