Sean McBride
35f1a90df7
Merge pull request #22149 from seanm:sprintf
...
Replaced sprintf with safer snprintf
* Straightforward replacement of sprintf with safer snprintf
* Trickier replacement of sprintf with safer snprintf
Some functions were changed to take another parameter: the size of the buffer, so that they can pass that size on to snprintf.
2 years ago
Quella Zhang (Beyondsoft Corporation)
5105a937d1
Add namespace specifier for format()
4 years ago
MoonChasing
98db891851
using argv[0] represent binary executable files' name in help() function
...
in sample codes instead of cpp files' name.
5 years ago
Alexander Alekhin
c4c31f5bba
samples: use findFile() in "cpp"
6 years ago
tompollok
0b77600718
change area() emptiness checks to empty()
6 years ago
luz.paz
dbb57cd0ae
Misc. ./samples typos
...
Found via `codespell -q 3 --skip="./3rdparty" -I ../opencv-whitelist.txt`
7 years ago
StevenPuttemans
6d34d6b47e
update samples: waitKey() usage
...
Original commit is a5f19f7dd6
8 years ago
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
11 years ago
vbystricky
4286f60387
Extract imgcodecs module from highgui
11 years ago
Andrey Kamaev
e5a33723fc
Move C API of opencv_calib3d to separate file
12 years ago
Andrey Kamaev
0738ea7d0f
Make highgui.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
2a6fb2867e
Remove all using directives for STL namespace and members
...
Made all STL usages explicit to be able automatically find all usages of
particular class or function.
12 years ago
Andrey Kamaev
bd0e0b5800
Merged the trunk r8589:8653 - all changes related to build warnings
13 years ago
Andrey Kamaev
49a1ba6038
Set stricter warning rules for gcc
13 years ago
Vadim Pisarevsky
2fd1e2ea57
merged all the latest changes from 2.4 to trunk
13 years ago
Andrey Kamaev
c712f376d5
Fixed warnings about unused return value of fscanf, scanf and system
13 years ago
Vadim Pisarevsky
4985c1b632
fixed hundreds of warnings from MSVC 2010.
13 years ago
Vadim Pisarevsky
23768b1826
replaced #include <some_opencv_hdr> with #include "some_opencv_hdr" (ticket #719 )
14 years ago
Gary Bradski
4530eebae3
revamped
14 years ago
Gary Bradski
4c95848cc7
allowed top docs to print out
14 years ago
Gary Bradski
7df9aef99c
Added description, fixed missing >
14 years ago
Vadim Pisarevsky
08cba33f9d
fixed some more MSVC2010 warnings
15 years ago
Vadim Pisarevsky
65f3b09d31
added grabcut() call
15 years ago
Vadim Pisarevsky
56f17b78bb
added some on-screen help
15 years ago
Vadim Pisarevsky
2d2cc3ecdf
updated
15 years ago
Vadim Pisarevsky
b2244f87ac
improved the calibration and select3dobj samples
15 years ago
Vadim Pisarevsky
6027f4d4f9
removed keypoint_matching.cpp from samples/cpp/CMakeLists.txt, fixed some crashes in select3dobj.cpp
15 years ago
Vadim Pisarevsky
108f4b2416
write camera pose, handle partially occluded objects
15 years ago
Vadim Pisarevsky
ed64c5606e
the new 3D object selection demo
15 years ago