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 |
Vladislav Vinogradov
|
0c7663eb3b
|
Merge branch 'master' into gpu-cuda-rename
Conflicts:
modules/core/include/opencv2/core/cuda.hpp
modules/cudacodec/src/thread.cpp
modules/cudacodec/src/thread.hpp
modules/superres/perf/perf_superres.cpp
modules/superres/src/btv_l1_cuda.cpp
modules/superres/src/optical_flow.cpp
modules/videostab/src/global_motion.cpp
modules/videostab/src/inpainting.cpp
samples/cpp/stitching_detailed.cpp
samples/cpp/videostab.cpp
samples/gpu/stereo_multi.cpp
|
11 years ago |
Roman Donchenko
|
bd70a033fc
|
Boring changes - calib3d.
|
11 years ago |
Roman Donchenko
|
9b92545ce6
|
War on Whitespace, master edition: trailing spaces.
|
11 years ago |
Bo Li
|
27a0ed0018
|
removed tab in five-point.cpp
|
12 years ago |
Bo Li
|
9b5eca975b
|
fixed a bug for the mask of recoverPose function
|
12 years ago |
Andrey Kamaev
|
e5a33723fc
|
Move C API of opencv_calib3d to separate file
|
12 years ago |
Andrey Kamaev
|
d4bb421ce2
|
Fix findEssentialMat function
Also remove all usages of std::complex from OpenCV modules
|
12 years ago |
Andrey Kamaev
|
c886afb502
|
Finalize cv::Mat transition
|
12 years ago |
Bo Li
|
94b12eae92
|
update five-point license
|
12 years ago |
Bo Li
|
2435e59890
|
rewrite five-point coeff matrix.
|
12 years ago |
Vadim Pisarevsky
|
374e3a0890
|
rewritten several functions from calib3d: findhomography, findfundamentalmat, findessentialmat, estimateaffine3d, computecorrespondepilines, convert points{to/from}homogeneous to C++.
|
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 |
Bo Li
|
956a029ede
|
added code, test and doc for five-point algorithm
|
12 years ago |