Cédric Rousseau
76e4b0a8fe
Reverts "Set the default value of exposure_weight in createMergeMertens to 1.0" because it breaks source code compatibility and tests
...
This reverts commit dbfd6a3dde
.
9 years ago
Vadim Pisarevsky
1e443a6ea6
Merge pull request #5800 from taketwo:fix-merge-debevec
9 years ago
Vadim Pisarevsky
f93a4dfbc9
Merge pull request #5799 from alalek:fix_5066
9 years ago
Vadim Pisarevsky
34129d8e83
Merge pull request #5806 from IshankGulati:cv-merge-documentation
9 years ago
Cédric Rousseau
dbfd6a3dde
Set the default value of exposure_weight in createMergeMertens to 1.0
9 years ago
Vadim Pisarevsky
c5d4ecae37
Merge pull request #5588 from T-Dunker:ScheimpflugModel
9 years ago
Cédric Rousseau
d19189e80f
Fixed the formula to compute the well-exposedness weight map.
9 years ago
Ishank gulati
d1ac75cabd
corrected cv::merge documentation
9 years ago
flp
b6ce4a527e
added docstring to python files
9 years ago
flp
14c5ef8db4
Added .gitignore for tmp files created by examples
9 years ago
flp
006d5ac0a5
Adapted for py2/py3 compatibility
9 years ago
Nils Plath
a1173dfa27
Added switch to CMakeLists.txt in order to enable/disable Matlab.
9 years ago
Sergey Alexandrov
08b30580b7
Do not modify input parameter in MergeDebevec
...
MergeDebevec takes camera response function as an optional input
parameter. Despite being clearly marked as input, this matrix is
overwritten during processing.
This commit adds a temporary matrix to store the log response and avoid
modification of the input.
9 years ago
Vadim Pisarevsky
aee03cd5e5
Merge pull request #5796 from alalek:fix_5019
9 years ago
Vadim Pisarevsky
d366cb960d
Merge pull request #5798 from vpisarev:fixed_digits_py
9 years ago
Vadim Pisarevsky
5ac1d8323e
Merge pull request #5797 from alalek:fix_5018
9 years ago
Vadim Pisarevsky
e4fea5abab
Merge pull request #5793 from alalek:precomp_add_cvconfig
9 years ago
Alexander Alekhin
1305962af7
fixes #5066 : laplacian: "y" may contain negative values
9 years ago
Alexander Alekhin
fd0773eb32
Merge pull request #5795 from alalek:fix_5095
9 years ago
Thomas Dunker
6882c10b45
Extension of the camera distortion model for tilted image sensors (Scheimpflug condition) including test
9 years ago
Vadim Pisarevsky
ba71caca04
fixed digits.py sample
9 years ago
Alexander Alekhin
0db10a3052
fixes #5019 : python and java bindings become CMake modules (loadable plugins)
9 years ago
Vadim Pisarevsky
4c1c0b108d
Merge pull request #5790 from bastelflp:py3compatibility
9 years ago
Alexander Alekhin
f0c14888d5
fixes #5018 : fix framework links in opencv.pc (MacOS)
9 years ago
Alexander Alekhin
5c15461595
UMat access flags ( fixes #5095 )
9 years ago
Alexander Alekhin
5d346128f7
workaround: cvconfig.h doesn't work with hal at this moment
9 years ago
Alexander Alekhin
e37a58df3c
include "cvconfig.h"
9 years ago
flp
4ed2d6328b
Python samples adapted for Python3 compatibility
...
Common fixes:
- print function
- int / float division
- map, zip iterators in py3 but lists in py2
Known bugs with opencv 3.0.0
- digits.py, called via digits_video.py: https://github.com/Itseez/opencv/issues/4969
- gaussian_mix.py: https://github.com/Itseez/opencv/pull/4232
- video_v4l2.py: https://github.com/Itseez/opencv/pull/5474
Not working:
- letter_recog.py due to changed ml_StatModel.train() signature
9 years ago
Alexander Alekhin
2bfad68812
pkg-config: remove $<LINK_ONLY:...> expressions
9 years ago
Alexander Alekhin
a153871940
disable ts module if it is not used: BUILD_TESTS=OFF and BUILD_PERF_TESTS=OFF
9 years ago
Alexander Alekhin
7afce8e003
world build: fix modules instantiation order
...
opencv_hal before opencv_world
opencv_world before opencv_ts
9 years ago
Alexander Alekhin
1836d41b5c
warning fix (MSVS2015)
9 years ago
Alexander Alekhin
fe2f5c175a
distrib: remove useless static files from shared distribution package
9 years ago
Alexander Alekhin
8f732f2cfe
fix samples deps
...
some tutorials depends on contrib modules
9 years ago
Alexander Alekhin
5053aeeb19
cmake: DOWNLOAD_EXTERNAL_TEST_DATA option
9 years ago
Vadim Pisarevsky
5cdf0e3e89
Merge pull request #5351 from paroj:calibout
9 years ago
Vadim Pisarevsky
c22673e999
Merge pull request #5782 from alalek:update_libpng
9 years ago
Vadim Pisarevsky
e0395a79ec
Merge pull request #5616 from afriesen:lr_predict
9 years ago
Pavel Rojtberg
60c06e551a
calibrateCamera: do not require rvec and tvec to be vector<Mat>
...
if they are not we also do not need to allocate a local copy of the rvec
and tvec
9 years ago
Pavel Rojtberg
205775ed52
calibrateCamera: only allocate and compute rvecs, tvecs when needed
...
also replace C defines with C++ enums
9 years ago
Alexander Alekhin
c2a86a6a84
NEON flags fix
9 years ago
Alexander Alekhin
dbc0aa6c7b
libpng: re-apply patch
9 years ago
Alexander Alekhin
0831bd3990
libpng: update 1.6.19 - November 12, 2015
9 years ago
Vadim Pisarevsky
21b415f6be
Merge pull request #5691 from paroj:levmarqLU
9 years ago
Vadim Pisarevsky
286ba8cffd
Merge pull request #5783 from vpisarev:ml_fixes
9 years ago
Pavel Rojtberg
b5ddaae427
calib3d: add CALIB_USE_LU to use LU decomposition in solver
9 years ago
Pavel Rojtberg
4c251bd260
CvLevMarq: add solve method to interface
9 years ago
Pavel Rojtberg
22b64e2c28
CvLevMarq: remove fixed rows instead of setting them to zero
...
use the same approach like in fisheye calibration: instead of setting
masked out rows to zero, remove them from the equation system.
This way JtJ does not become singular and we can use the much faster LU
decomposition instead of SVD.
This results in a speedup of the Calibrate unit tests of 3x-10x.
9 years ago
Pavel Rojtberg
9d89c369f8
update SOLVEPNP documentation
9 years ago
Vadim Pisarevsky
7a7b0bcfcb
fixed the upper boundary when calling checkRange (thanks to alalek)
9 years ago