opencv/modules
Martin Ueding 5ffb53f229 Add example data types for calibrateCamera call
It took me a while to figure out what was meant with

    OpenCV Error: Assertion failed (i < 0) in getMat

While searching for this error message I found [a list of error
messages](https://adventuresandwhathaveyou.wordpress.com/2014/03/14/opencv-error-messages-suck/)
which also explained what the problem was: The data type for `rvecs` was
not a simple `cv::Mat` but a `std::vector<cv::Mat>`.

After I fixed that, I got the next error message:

    OpenCV Error: Assertion failed (ni > 0 && ni == ni1) in
    collectCalibrationData, file
    /build/buildd/opencv-2.4.9+dfsg/modules/calib3d/src/calibration.cpp,
    line 3193

The problem here was that my data type for the `objectPoints` was just
`vector<Vec3f>` and not `vector<vector<Vec3f>>`.

In order to save other people the time looking for this, I added
explicit examples of the needed data types into the documentation of the
function. I had to re-read the current version a couple of times until I
can read the needed levels of `vector<>`. Having this example would have
really helped me there.
2015-04-23 13:30:14 +02:00
..
androidcamera Fix uninitialized members, fix log output typo 2015-03-17 14:47:00 +03:00
calib3d Add example data types for calibrateCamera call 2015-04-23 13:30:14 +02:00
core Merge pull request #3939 from paroj:fmtfix 2015-04-22 12:15:17 +00:00
cudaarithm Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudabgsegm move obsolete algorithms from cudabgsegm to cudalegacy: 2015-01-19 14:17:00 +03:00
cudacodec Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudafeatures2d Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudafilters Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudaimgproc Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudalegacy disable cuda::OpticalFlowNeedleMap if configured without cudaimgproc 2015-03-25 13:47:53 +01:00
cudaobjdetect fixing CUDA cascade classifiers function and needed models 2015-02-27 14:20:27 +01:00
cudaoptflow Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudastereo Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudawarping Adding support for WinRT(WinPhone 8/8.1 and Win Store) via CMake 3.1 2015-03-02 22:26:43 +03:00
cudev Merge pull request #3531 from jet47:cuda-core-refactoring 2014-12-26 12:12:42 +00:00
features2d fully implemented SSE and NEON cases of intrin.hpp; extended the HAL with some basic math functions 2015-04-16 23:00:26 +03:00
flann Python support 2015-03-02 18:13:00 +03:00
hal fixed some newly introduced compile errors and warnings 2015-04-20 21:34:37 +03:00
highgui fixing locale settings - making it universal 2015-03-06 13:13:53 +01:00
imgcodecs move 3265 to 3.0; 2015-04-16 14:36:46 +03:00
imgproc Merge pull request #3950 from paroj:fix-gftt_ocl 2015-04-22 19:08:15 +00:00
java Rename manager package to OpenCV3 Manager 2015-04-17 16:59:52 +03:00
ml Merge pull request #3909 from Nuzhny007:master 2015-04-21 14:02:59 +00:00
objdetect initialize tiltedOffset variable at correct location 2015-04-01 20:32:30 +02:00
photo fully implemented SSE and NEON cases of intrin.hpp; extended the HAL with some basic math functions 2015-04-16 23:00:26 +03:00
python Add #ifdef's such that python wrapper builds independent of other components 2015-04-06 19:57:10 -04:00
shape Python support 2015-03-02 18:13:00 +03:00
stitching fully implemented SSE and NEON cases of intrin.hpp; extended the HAL with some basic math functions 2015-04-16 23:00:26 +03:00
superres Fixed windows build and one warning 2015-04-10 11:37:16 +03:00
ts Functionality for relocation of tests 2015-04-01 11:50:05 +03:00
video Merge pull request #3846 from mshabunin:fix-headers 2015-03-23 08:01:25 +00:00
videoio Merge pull request #3952 from vpisarev:fix_libav_case 2015-04-23 06:25:25 +00:00
videostab Python support 2015-03-02 18:13:00 +03:00
viz Null Pointer check in vizimpl.cpp 2015-04-21 10:08:17 +02:00
world Fixed world build with HAL 2015-04-08 19:56:17 +03:00
CMakeLists.txt world fix 2014-08-05 20:12:35 +04:00