ValeryTyumen
297808e6b9
Feature #3957
9 years ago
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
10 years ago
vbystricky
d58f736935
Split highgui module to videoio and highgui
10 years ago
vbystricky
4286f60387
Extract imgcodecs module from highgui
11 years ago
StevenPuttemans
2b106db02f
Applied all fixes related to translating C to C++ code
...
Also fixed some typos and code alignment
Also adapted tutorial CPP samples
Fixed some identation problems
11 years ago
Andrey Kamaev
e5a33723fc
Move C API of opencv_calib3d to separate file
12 years ago
Andrey Kamaev
288a0634c2
Make imgproc.hpp independent from C API
12 years ago
Andrey Kamaev
89356ff16d
Move non-CV functionality from core.hpp to separate utility.hpp header
12 years ago
Andrey Kamaev
9944282b09
Fix build with STLPort from NDK r8d
12 years ago
Andrey Kamaev
bd0e0b5800
Merged the trunk r8589:8653 - all changes related to build warnings
13 years ago
Andrey Kamaev
c5aba337e9
Fixed number of warnings. Fixed mingw64 build.
13 years ago
Andrey Kamaev
49a1ba6038
Set stricter warning rules for gcc
13 years ago
Vadim Pisarevsky
4985c1b632
fixed hundreds of warnings from MSVC 2010.
13 years ago
itsyplen
3876cf22e3
reverted samples with new command argument parser. will be continued after OpenCV release.
14 years ago
itsyplen
2e7e6ae84b
Update sample: change help and added CommandLineParser using
14 years ago
Ilya Lysenkov
686063689c
Fixed #886
14 years ago
Ilya Lysenkov
3474e37037
Fixed #1063
14 years ago
Gary Bradski
975ecaca7d
added output camera id if it fails
14 years ago
Ilya Lysenkov
3e43bc579b
Modified the calibration sample to work with asymmetric pattern
14 years ago
Ilya Lysenkov
bdf6f0258c
Changed the camera calibration sample to support circles' grid pattern
14 years ago
Gary Bradski
3c57612f42
revamped
14 years ago
Vadim Pisarevsky
3fd07809c9
make cv::calibrateCamera, cv::stereoCalibrate and their C counterparts return the standard RMS error.
14 years ago
Vadim Pisarevsky
2b660bf554
added flag to treat input file as a videofile (patch by Ethan Rublee; ticket #392 )
14 years ago
Vadim Pisarevsky
1286c1db45
fixed multiple warnings from VS2010.
14 years ago
Gary Bradski
d0d7ba9985
added and moved docs
14 years ago
Ethan Rublee
2e9136259d
Adding two samples that deal with FileStorage - useful for creating image lists
14 years ago
Ethan Rublee
9ee954a0c6
Made calibration a bit faster in the absense of a checkboard and trying to fix
...
a crash with the libv4l capture code
14 years ago
Ethan Rublee
e842a0c816
change int to char so that keys are registered properly, maybe this breaks others though
14 years ago
Vadim Pisarevsky
31dbefc865
added 3-camera rectification and 8-coeff distortion model
14 years ago
Yannick Verdie
3746c48451
Bug in calibration.cpp sample
...
This was crashing my code:
for( size_t i = 1; i < imagePoints.size(); i++ )
objectPoints.push_back(objectPoints[0]);
Changed by:
objectPoints.resize(imagePoints.size(),objectPoints[0]);
Plus clean up on Qt code
14 years ago
Vadim Pisarevsky
9c94a96c40
repaired aspect ratio option; fixed comments
15 years ago
Vadim Pisarevsky
08cba33f9d
fixed some more MSVC2010 warnings
15 years ago
Gary Bradski
730de4d8c3
Fixed crash if no chessboard problem
15 years ago
Vadim Pisarevsky
db82906067
fix build with GCC 3.3 on Ubuntu 8.04
15 years ago
Vadim Pisarevsky
4eda856cd5
squareSize renamed to square_size in the output xml/yml
15 years ago
Vadim Pisarevsky
b2244f87ac
improved the calibration and select3dobj samples
15 years ago
Vadim Pisarevsky
654d447661
calibration sample rewritten using the C++ API
15 years ago