Adil Ibragimov
|
8a4a1bb018
|
Several type of formal refactoring:
1. someMatrix.data -> someMatrix.prt()
2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
|
2014-08-13 15:21:35 +04:00 |
|
Roman Donchenko
|
bd70a033fc
|
Boring changes - calib3d.
|
2013-09-05 18:26:43 +04:00 |
|
Roman Donchenko
|
5e4ebf3403
|
Fixed incomplete matrix initialization in HomographyRefineCallback.
|
2013-08-28 13:20:14 +04:00 |
|
Andrey Kamaev
|
e5a33723fc
|
Move C API of opencv_calib3d to separate file
|
2013-04-11 21:00:17 +04:00 |
|
Vadim Pisarevsky
|
f303de12d8
|
mask.create() re-converted to new style
|
2013-03-05 00:03:37 +04:00 |
|
Vadim Pisarevsky
|
0c61a8887e
|
reverting changes in Homography kernel function. For some reason GCC on Linux does not like it.
|
2013-03-05 00:00:21 +04:00 |
|
Vadim Pisarevsky
|
7fd1d75738
|
some more minor fixes
|
2013-03-04 16:02:15 +04:00 |
|
Vadim Pisarevsky
|
8a6d2bbd3d
|
several minor fixes proposed by Andrey
|
2013-03-03 00:54:46 +04:00 |
|
Vadim Pisarevsky
|
374e3a0890
|
rewritten several functions from calib3d: findhomography, findfundamentalmat, findessentialmat, estimateaffine3d, computecorrespondepilines, convert points{to/from}homogeneous to C++.
|
2013-02-28 18:25:05 +04:00 |
|
jmbuena
|
28a7be69ea
|
Fixed compile warnings on CvHomographyEstimator
|
2013-01-12 12:32:51 +01:00 |
|
jmbuena
|
6d738f6a3f
|
Changed RANSAC Homography estimation for speed. Each minimal set is checked for consistency before actually fit a candidate homography.
|
2013-01-11 01:55:56 +01:00 |
|
OpenCV Buildbot
|
81f826db2b
|
Normalize line endings and whitespace
|
2012-10-17 15:57:49 +04:00 |
|
Daniil Osokin
|
4500c48349
|
fixed 7 point mode in findFundamentalMat #1978
|
2012-10-12 14:38:52 +04:00 |
|
Vadim Pisarevsky
|
b5eb318ae3
|
added support of homogeneous points to calcCorrespondEpilines (ticket #2055)
|
2012-07-01 20:13:49 +00:00 |
|
Vadim Pisarevsky
|
aed276e67d
|
fixed cvComputeCorrespondEpilines to handle <5 points (ticket #1635)
|
2012-03-28 13:37:14 +00:00 |
|
Vadim Pisarevsky
|
a3362864e1
|
removed unnecessary MIN(); bug #1578
|
2012-03-26 10:01:30 +00:00 |
|
Vadim Pisarevsky
|
dd1315b22a
|
fixed rank check in 8-point Fundamental Matrix algorithm (patch by F. Devernay; ticket #1273)
|
2011-08-06 19:38:09 +00:00 |
|
Vadim Pisarevsky
|
16b0fcf083
|
fixed CvHomographyEstimator::runKernel (ticket #1275)
|
2011-08-04 13:06:08 +00:00 |
|
Vadim Pisarevsky
|
c57799a877
|
fixed 8-point case in findFundamentalMat (ticket #1262). findFundamentalMat needs to be rewritten actually (as well as findHomography)
|
2011-08-03 14:04:14 +00:00 |
|
Vadim Pisarevsky
|
0c877f62e9
|
replaced "const InputArray&" => "InputArray"; made InputArray and OutputArray references. added "None()" constant (no array()).
|
2011-06-06 14:51:27 +00:00 |
|
Vadim Pisarevsky
|
bfbc70436d
|
fixed crash in cv2.findHomography() (ticket #1094)
|
2011-05-26 20:33:55 +00:00 |
|
Vadim Pisarevsky
|
2dc981aaa8
|
fixed bug with possible memory corruption in CvMat m = iarray.getMat(); expressions (ticket #1054)
|
2011-05-18 15:16:12 +00:00 |
|
Vadim Pisarevsky
|
f39db3f15a
|
fixed problems indicated with ? marks
|
2011-05-05 13:31:54 +00:00 |
|
Vadim Pisarevsky
|
d02a0cab48
|
updated OpenCV version to 2.2.9; added missing cv::convertPointsHomogeneous for backward compatibility; fixed bug #952
|
2011-05-02 22:20:22 +00:00 |
|
Vadim Pisarevsky
|
83efef4b9a
|
added overloaded variants of findHomography & findFundamentalMat for backward compatibility
|
2011-04-23 12:49:14 +00:00 |
|
Vadim Pisarevsky
|
abeeb40d46
|
a big patch; use special proxy types (Input/OutputArray, Input/OutputArrayOfArrays) for passing in vectors, matrices etc.
|
2011-04-17 13:14:45 +00:00 |
|
Vadim Pisarevsky
|
e5d1b9eecd
|
another attempt to fix findHomography
|
2010-12-27 10:00:26 +00:00 |
|
Vadim Pisarevsky
|
d14b744ea9
|
possibly improved findHomography accuracy (reported by Luca Del Tongo)
|
2010-12-10 21:02:13 +00:00 |
|
Vadim Pisarevsky
|
ea6b441052
|
extended cv::convertPointsHomogeneous to handle 4D input. corrected documentation
|
2010-11-18 22:03:20 +00:00 |
|
Vadim Pisarevsky
|
28de198c75
|
switched from 8-point kernel to 7-point kernel in the fundamental matrix estimator (fixes some corner cases; see ticket #434)
|
2010-11-12 21:07:41 +00:00 |
|
Vadim Pisarevsky
|
5a53d82e30
|
fixed most of the failures in opencv_test
|
2010-11-06 14:56:01 +00:00 |
|
Vadim Pisarevsky
|
83f6085773
|
added more helper macros to the function declarations, to assist the Python wrapper generator. Fixed memleak in Mat::operator()(Range,Range) and the related functions (Mat::row, Mat::col etc.)
|
2010-10-27 18:26:39 +00:00 |
|
Vadim Pisarevsky
|
8a7b4760ac
|
avoid one possible singularity in cvFindHomography
|
2010-06-06 17:21:40 +00:00 |
|
Vadim Pisarevsky
|
127d6649a1
|
"atomic bomb" commit. Reorganized OpenCV directory structure
|
2010-05-11 17:44:00 +00:00 |
|