- 17 Jan, 2018 7 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
razerhell authored
* Newton's method can be more efficient when we get the result of function distortPoint with a point (0, 0) and then undistortPoint with the result, we get the point not (0, 0). and then we discovered that the old method is not convergence sometimes. finally we have gotten the right values by Newton's method. * modify by advice Newton's method...#10574 * calib3d(fisheye): fix codestyle, update theta before exit EPS check
-
Alexander Alekhin authored
-
Li Peng authored
Signed-off-by: Li Peng <peng.li@intel.com>
-
Li Peng authored
Signed-off-by: Li Peng <peng.li@intel.com>
-
csukuangfj authored
-
- 16 Jan, 2018 10 commits
-
-
Csaba Keszegh authored
When compiling with cmake using -DCMAKE_CXX_STANDARD=11 use `-std=gnu++11` for PCH compiler flags, otherwise it triggers an error: opencv_core_Release.gch: not used because `__cplusplus' defined as ` 201103L' not ` 199711L' [-Winvalid-pch] Use CXX_EXTENSIONS property to select `gnu++11` or `c++11`. Trying to mimic cmake logic here: https://gitlab.kitware.com/cmake/cmake/blob/master/Source/cmLocalGenerator.cxx#L1527-1557
-
Alexander Alekhin authored
-
Woody Chow authored
Propagate calculated Gaussian kernel size(ref). Otherwise, ipp_GaussianBlur will fail if user doesn't specify a kernel size. (#10579)
-
Alexander Alekhin authored
-
Maksim Shabunin authored
-
Maksim Shabunin authored
-
Alexander Alekhin authored
-
Li Peng authored
use a batch_norm ocl kernel to do the work Signed-off-by: Li Peng <peng.li@intel.com>
-
Alexander Alekhin authored
-
Vadim Pisarevsky authored
-
- 15 Jan, 2018 7 commits
-
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
oqtvs authored
-
oqtvs authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
woody.chow authored
-
- 14 Jan, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 13 Jan, 2018 10 commits
-
-
Dmitry Kurtaev authored
-
Dmitry Kurtaev authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
- fix Javadoc: - generate Javadoc after gather step to process all Java files (including Android 21) - generate into 'OpenCV-android-sdk' directly without additional copy step - use smart copy/move utility functions ('shutil' doesn't well with existed destination) - by default move files to reduce pressure on storage I/O (> 800Mb)
-
Alexander Alekhin authored
-
Alexander Alekhin authored
- fix imports override. Problem is observed with BoostDesc. - add Ptr<> handling (constructor is protected from other packages). Observed in ximgproc: Ptr<StereoMatcher> createRightMatcher(Ptr<StereoMatcher> matcher_left)" where, "StereoMather" is from another package (calib3d)
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
- 12 Jan, 2018 5 commits
-
-
Alexander Alekhin authored
intermediate commit (to simplify code review)
-
Alexander Alekhin authored
-
Alexander Alekhin authored
-
Maksim Shabunin authored
-
SarenT authored
Adding capability to parse subsections of a byte array in Java bindings (#10489) * Adding capability to parse subsections of a byte array in Java bindings. (Because Java lacks pointers. Therefore, reading images within a subsection of a byte array is impossible by Java's nature and limitations. Because of this, many IO functions in Java require additional parameters offset and length to define, which section of an array to be read.) * Corrected according to the review. Previous interfaces were restored, instead internal interfaces were modified to provide subsampling of java byte arrays. * Adding tests and test related files. * Adding missing files for the test. * Simplified the test * Check was corrected according to discussion. An OutOfRangeException will be thrown instead of returning. * java: update MatOfByte implementation checks / tests
-