Vadim Pisarevsky
|
51c11ba78b
|
improved convertPointsHomogeneous documentation. added convertPointsTo/FromHomogeneous (ticket #1011)
|
14 years ago |
Ilya Lysenkov
|
c71e24cd96
|
Updated docs of findCirclesGrid()
|
14 years ago |
Vadim Pisarevsky
|
2d2b8a496e
|
renamed "None()" to "noArray()" to avoid conflicts with X11 (ticket #1122)
|
14 years ago |
Vadim Pisarevsky
|
c7a42e9682
|
started work on API & doc synchronization (in particular, Mat& => Input/OutputArray in the descriptions)
|
14 years ago |
Vadim Pisarevsky
|
fcd2a0c3d3
|
fixed VS2010 compile warnings and errors
|
14 years ago |
Vadim Pisarevsky
|
0c877f62e9
|
replaced "const InputArray&" => "InputArray"; made InputArray and OutputArray references. added "None()" constant (no array()).
|
14 years ago |
Ethan Rublee
|
5964234681
|
Quiet the errors from the circlesgrid pattern detector. These were really verbose.
|
14 years ago |
Ilya Lysenkov
|
4875ffc953
|
Removed using of homogeneous coordinates in cvProjectPoints2 (ticket #845)
|
14 years ago |
Ilya Lysenkov
|
aa3dada2fe
|
Added support of the CV_64F depth to solvePnP (ticket #835)
|
14 years ago |
Vadim Pisarevsky
|
bfbc70436d
|
fixed crash in cv2.findHomography() (ticket #1094)
|
14 years ago |
Vadim Pisarevsky
|
145a76faf4
|
fixed features2d (ORB) compile errors on Windows
|
14 years ago |
Vadim Pisarevsky
|
f2a337f990
|
fixed several typos, including the old ones from ticket #854
|
14 years ago |
Vadim Pisarevsky
|
57e5fabf8f
|
Use INVALID_DISP_SCALED instead of INVALID_DISP in validateDisparity (ticket #1007)
|
14 years ago |
Vadim Pisarevsky
|
23768b1826
|
replaced #include <some_opencv_hdr> with #include "some_opencv_hdr" (ticket #719)
|
14 years ago |
Vadim Pisarevsky
|
2dc981aaa8
|
fixed bug with possible memory corruption in CvMat m = iarray.getMat(); expressions (ticket #1054)
|
14 years ago |
Elena Fedotova
|
aa1fac4c5a
|
Purpose: completed the calib3d chapter
|
14 years ago |
Anatoly Baksheev
|
8ebff41c29
|
more warnings fixed. +some warnings in examples
|
14 years ago |
Anatoly Baksheev
|
927dccb463
|
fixed compilation WITH_TBB
|
14 years ago |
Anatoly Baksheev
|
1c18e5fef9
|
fixed ~300 warnings under windows (had to hack gtest a bit)
|
14 years ago |
Ilya Lysenkov
|
a685be3ea9
|
Added extra argument for BlobDetector in findCirclesGrid
|
14 years ago |
Ilya Lysenkov
|
dde9181117
|
Added a fast algorithm for the symmetric circles grid detection
|
14 years ago |
Vadim Pisarevsky
|
f39db3f15a
|
fixed problems indicated with ? marks
|
14 years ago |
Vadim Pisarevsky
|
d02a0cab48
|
updated OpenCV version to 2.2.9; added missing cv::convertPointsHomogeneous for backward compatibility; fixed bug #952
|
14 years ago |
Vadim Pisarevsky
|
23a9b7bb9c
|
fixed several warnings from Xcode 4 LLVM compiler; fixed bug #920
|
14 years ago |
Alexander Shishkov
|
8a79d414c0
|
fixed bug in solvePnPRansac test (thanks to Pieter-Jan Busschaert)
test was refactored
|
14 years ago |
Vadim Pisarevsky
|
06b233bdc9
|
corrected the output euler angle on y axis in RQDecomp3x3 (thanks to Lasve for the patch)
|
14 years ago |
Vadim Pisarevsky
|
820c5941fc
|
corrected badarg test of findchessboardcorners (thanks to Pieter-Jan Busschaert)
|
14 years ago |
Vadim Pisarevsky
|
d95bf478fe
|
fixed corners emptiness check in drawChessboardCorners (thanks to thomask)
|
14 years ago |
Vadim Pisarevsky
|
83efef4b9a
|
added overloaded variants of findHomography & findFundamentalMat for backward compatibility
|
14 years ago |
Vadim Pisarevsky
|
abeeb40d46
|
a big patch; use special proxy types (Input/OutputArray, Input/OutputArrayOfArrays) for passing in vectors, matrices etc.
|
14 years ago |
Ilya Lysenkov
|
a811a08d0d
|
Added checks for incorrect results in the circles grid pattern detection.
|
14 years ago |
Ilya Lysenkov
|
37cd2b6f25
|
Implemented new algorithm for asymmetric circles pattern detection. Use flag CALIB_CB_CLUSTERING.
|
14 years ago |
Vadim Pisarevsky
|
73f589e8a5
|
further docs cleanup
|
14 years ago |
Vadim Pisarevsky
|
5c3447c125
|
added pictures for OpenCV 2.x reference manual; fixed some build problems and done some more cleanup work
|
14 years ago |
Alexander Shishkov
|
04461a53f1
|
added solvePnPRansac method
|
14 years ago |
Vadim Pisarevsky
|
f025e4739a
|
some more doc cleanup
|
14 years ago |
Vadim Pisarevsky
|
4bb893aa9f
|
the first round of cleaning up the RST docs
|
14 years ago |
Vadim Pisarevsky
|
24ccbccf63
|
cleaned RST formatting a bit
|
14 years ago |
Vadim Pisarevsky
|
371aa08006
|
OpenCV reference manual (C++ part only for now) is now produced directly from RST, not from TeX.
|
14 years ago |
Anatoly Baksheev
|
047c7e0fd6
|
*applied patch from NVidia (nppstTraspose bug)
*fixed some warnings
*finished gpu test port to gtest framework
|
14 years ago |
Vadim Pisarevsky
|
c5e3869c32
|
replaced alloca() (a.k.a. cvStackAlloc) with AutoBuffer or vector() everywhere. cvStackAlloc() is still defined, but we do not need alloca() anymore to compile and run OpenCV (fixes #889 and may be some others)
|
14 years ago |
Vadim Pisarevsky
|
65a7f13af3
|
replaced alloca() (a.k.a. cvStackAlloc) with AutoBuffer or vector() everywhere. cvStackAlloc() is still defined, but we do not need alloca() anymore to compile and run OpenCV (fixes #889 and may be some others)
|
14 years ago |
Marius Muja
|
7d42dbdd71
|
Removing 'using namespace std' from header files, closes bugs #730 and #846
|
14 years ago |
Vadim Pisarevsky
|
061b49e0b2
|
reworked nearly all of the OpenCV tests (except for opencv_gpu tests) - they now use the Google Test engine.
|
14 years ago |
Ilya Lysenkov
|
f8e9f65ea8
|
Added detection of asymmetric circles' pattern
|
14 years ago |
Vadim Pisarevsky
|
2dd0e85264
|
fixed some build problems
|
14 years ago |
Vadim Pisarevsky
|
e5d1b9eecd
|
another attempt to fix findHomography
|
14 years ago |
Ilya Lysenkov
|
2d5a984c28
|
Moved BlobDetector to features2d
|
14 years ago |
Ilya Lysenkov
|
0bc1349335
|
Fixed some warnings under Windows
|
14 years ago |
Ilya Lysenkov
|
351f6eeb97
|
Fixed compile errors under Windows
|
14 years ago |