WikiStart

Version 1 (Gary Bradski, 2016-03-01 07:24 pm)

1 1
!http://opencv.itseez.com/report/logo.jpg!
2 1
3 1
OpenCV (Open Source Computer Vision) is a library of programming functions for the realtime computer vision. OpenCV is released under the liberal "BSD license":http://opensource.org/licenses/bsd-license.php, it is free for both academic and commercial use. It runs on Windows, Linux, Mac, Android and has C++, C, Python and Java (Android only) interfaces. The library has more than 2500 optimized algorithms (see the figure below). It is used around the world, has more than 2.5M downloads and 40K+ developers in the user group. Real-life examples range from video surveillance to interactive art, mine inspection, panorama stitching and finally include the latest developments in advanced robotics.
4 1
5 1
Sister Projects
6 1
"Point Cloud Library (PCL) for 3D processing":http://pointclouds.org/
7 1
"Robot Operating System (OpenCV is integrated)":http://www.ros.org/wiki/
8 1
9 1
h1. OpenCV Issue Tracker
10 1
11 1
12 1
*This is OpenCV Issue Tracker.*
13 1
* If you are looking for the main OpenCV wiki page, go to http://opencv.willowgarage.com, 
14 1
* If you are looking for the user group (questions, support), go to http://tech.groups.yahoo.com/group/OpenCV/ .
15 1
16 1
*In order to submit bug reports:* 
17 1
You first need to register at http://code.opencv.org. Then:
18 1
* Click on "New issue" to file a new bug report or feature request, or submit a patch.
19 1
* Click on "Issues" or "Search" to look for existing tickets - probably your problem is already known or even fixed in the latest SVN version.
20 1
21 1
*Recommendations for submitting bug reports:*
22 1
* Please, specify your platform (Windows 32/64bit, Linux x86/x64/ppc/..., MacOSX 32/64bit/ppc), compiler version, OpenCV version, whether IPP, OpenMP, MMX, SSE ... have been enabled or not, and any other information that let us identify and reproduce the environment.
23 1
24 1
* A sample code reproducing the problem helps us the most. Please check opencv/samples/c or opencv/samples/python - for the preferred style (small code size, cross-platform).   
25 1
** There is *no need* to provide any project files or makefiles, if it is a short single-file sample, we could build it and run in a minute.
26 1
27 1
* If your application is complex, and the problem happens somewhere in the middle, often it is still possible to make a short standalone sample: 
28 1
  1. First, capture and store the data that you pass to the function using cvSave(), 
29 1
  1. then copy the function call and put the corresponding cvLoad() in front of it.
30 1
31 1
If we can reproduce the problem, we can fix it quickly.