Martin Ueding
9e29762838
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.
Conflicts:
modules/calib3d/include/opencv2/calib3d.hpp
10 years ago
unknown
ade46bd428
Fixed typos in comments
11 years ago
Daniel Angelov
660d7cd3ae
Updated findHomography docs branch 2.4
...
Updated the documents to give warning to the users of `findHomography` that the function may return an empty matrix in some cases.
The user must take care of checking that.
11 years ago
Ilya Krylov
0d2fab86b4
Changed documentation for namespace fisheye
11 years ago
Ilya Krylov
c30fef1f9d
Fixed build issues
11 years ago
StevenPuttemans
b382984810
fix bug 3252
11 years ago
StevenPuttemans
2b4241c10b
fixed bug 3484
11 years ago
Ilya Krylov
e4a9c0f184
Fixed review comments
11 years ago
Ilya Krylov
349ff631a5
Added sample of work of Fisheye::undistortImage and its description to documentation. Removed readPoints and readExtrinsic (useless)
11 years ago
Ilya Krylov
ef01044b2f
Added documentation for Fisheye::stereoCalibrate
11 years ago
Ilya Krylov
e6aa8ce932
Corrected notes
11 years ago
Ilya Krylov
f0f741b796
Added documentation
11 years ago
Roman Donchenko
e9a28f66ee
Normalized file endings.
11 years ago
Roman Donchenko
f55740da70
Deleted all trailing whitespace.
11 years ago
StevenPuttemans
ed76b2f98f
Like mentioned by Andrei Pavlenko after merging pullrequest #1206 , a wrong
...
ReST directive was used. Also fixed some other ReST directives that were
not correct and removed some warnings during buildbot checks.
11 years ago
StevenPuttemans
f28496c628
Added sample links in documentation for python2, ocl and gpu
12 years ago
StevenPuttemans
0c5244103f
Added all *.cpp samples reference to the 2.4.6 documentation as discussed in feature #3169
...
- Used lunix style slashes - works on most systems
- Removed all trailing whitespaces
12 years ago
Dominik Rose
cfaae5917b
Calib3d documentation:
...
- fixed reference to Slabaugh
12 years ago
Daniil Osokin
f9de98ec64
Fixed proposed values for speckleRange in StereoSGBM docs (bug #1937 )
12 years ago
Vsevolod Glumov
fc307c87dc
Improved the public 'non-optimized' duplicates of 'Tegra-optimized' functions.
12 years ago
Maria Dimashova
a39cf2dd28
updated doc on triangulatePoints ( #2167 )
13 years ago
Marina Kolpakova
fb3d6ecb98
merged documentation and android service from trunk
13 years ago
Maria Dimashova
722df6a998
minor change in doc
13 years ago
Maria Dimashova
7c211796e7
more doc details for #2152
13 years ago
Maria Dimashova
e68b26e71f
fixed doc #2152
13 years ago
Andrey Kamaev
81a5988015
Merged the trunk r8467:8507 (inclusive) (big bunch of documentation fixes)
13 years ago
Andrey Kamaev
05de6302fd
Fixed documentation: corrected parameter names
13 years ago
Andrey Kamaev
78329b0dfe
New bunch of documentation fixes
13 years ago
Andrey Kamaev
eb2f1f81ed
Fixed hundreds of documentation problems
13 years ago
Vadim Pisarevsky
2fd1e2ea57
merged all the latest changes from 2.4 to trunk
13 years ago
Ilya Lysenkov
2f44610ef3
Mentioned in doc if a function is parallelized with the TBB library (issue #421 )
13 years ago
Vadim Pisarevsky
6e5e2aa32f
fixed references in calib3d (including the ticket #1627 )
13 years ago
Vadim Pisarevsky
9eb0dc5194
minor correction in fx, fy (elements of camera matrix) description (ticket #1779 )
13 years ago
Andrey Kamaev
7e5726e251
Fixed several false-positive warnings in rst_parser.py. (Now it detects 553 undocumented parameters for #1205.)
13 years ago
Ilya Lysenkov
e7b4353505
Added termination criteria as a calibrateCamera() parameter
13 years ago
Ilya Lysenkov
ecbf9425e4
Added documentation of correctMaches ( #1350 )
13 years ago
Ilya Lysenkov
857676c610
Added documentation of triangulatePoints()
13 years ago
Andrey Kamaev
ec793df30f
#1205 fixed more bugs/typos in parameters
13 years ago
Andrey Kamaev
94c258cf15
#1205 fixed ~100 of ~700 parameters
13 years ago
Alexander Shishkov
5785a89053
fixed #1614
13 years ago
Vadim Pisarevsky
59ff1a4ccb
added StereoVar description (by Sergey Kosov)
13 years ago
Alexander Shishkov
bf747e6deb
modified documentation of solvePnP and solvePnPRansac
13 years ago
Alexander Shishkov
0922b3f3be
fixed Python description of estimateAffine3D function
13 years ago
Andrey Kamaev
d7a9b99b1d
Documentation: fixed references for C++ operators
14 years ago
Andrey Kamaev
d6e3ccc1b2
Documentation: fixed about 100 cross-referencing errors.
14 years ago
Andrey Kamaev
954f3c1eb9
Java: fixed Mats comparison; added resahpe mathod to core.Mat; fixed test resources extraction.
14 years ago
Vadim Pisarevsky
41df54e75f
fixed several typoes and errors in the refman (ticket #1203 )
14 years ago
Vadim Pisarevsky
f2e1a64c1b
fixed "import cv" in the new python samples. corrected Python bindings to match the documentation and vice versa (NOTE: in cv2.stereoCalibrate the parameter ordering has been changed)
14 years ago
Vadim Pisarevsky
5bb8076d7d
added centerPrincipalPoint=false to getOptimalNewCameraMatrix (ticket #1199 )
14 years ago
Vadim Pisarevsky
0940573e8b
fixed a few more typos in the docs.
14 years ago