Vitaly Tuzov
e8f3469096
Added OpenVX based processing to Sobel
8 years ago
LaurentBerger
c56c0e140b
Solve exception for 3D Mat
8 years ago
Li Peng
b72d196753
optimization for warpAffine and warpPerspective
...
Add new ocl kernels for warpAffine and warpPerspective,
The average performance improvemnt is about 30%. The new
ocl kernels require CV_8UC1 format and support nearest
neighbor and bilinear interpolation.
Signed-off-by: Li Peng <peng.li@intel.com>
8 years ago
Alexander Alekhin
4a7d441b37
test: fix cuda build
8 years ago
Alexander Alekhin
2c03c8d71f
Update googletests 1.8.0 (20160822) ( #7738 )
...
* restore Google Test 1.7.0 (get patch)
* ts: update Google Test to 1.8.0 release
https://github.com/google/googletest
* ts: re-apply OpenCV patch for gtest
* ts: fixes for gtest 1.8.0
* ts: workaround MSVS2015 problem in gtest
8 years ago
Michele Cancilla
89a0a46a69
Removed parallel version for CV_16U label type
8 years ago
Colin Finck
e8f591143c
objdetect: Properly check for C++11 as it's done in the matching .cpp file. Fixes #7623
8 years ago
Alexander Alekhin
32f568308a
cmake: cleanup ffmpeg detection
8 years ago
Alexander Alekhin
90da593316
highgui: g_thread_create deprecated warning
8 years ago
Alexander Alekhin
1a3f1a31b2
ts: CV_ENUM fix static initialization order fiasco
8 years ago
Alexander Alekhin
3f37e34e76
highgui: g_thread_create deprecated warning
8 years ago
Alexander Alekhin
56ed8b1721
calib3d: fix fisheye for test fisheyeTest.stereoCalibrateFixIntrinsic
8 years ago
Alexander Alekhin
e878b60dbc
core: drop type/dims/rows/cols information in Mat::release()
8 years ago
Alexander Alekhin
7dc673fd56
imgproc: fix findContours (submatrix input)
8 years ago
Michele Cancilla
4b7fc59332
Fixed _P reserved variable name problem and changed getNumThreads with getNumberOfCPUs
8 years ago
Alexander Alekhin
6fb75c677b
viz: update for VTK6.2+
...
PCL PR 1205
8 years ago
Alexander Alekhin
4a759abe39
Revert "Fix for VTK6.2 issue."
...
This reverts commit f45da9866a
.
8 years ago
Michele Cancilla
5b23c0b176
Fixed unnecessary black spaces;
...
Extended parallel version to all frameworks supported by OpenCV;
Added some documentation notes in modules/imgproc/include/opencv2/imgproc.hpp;
8 years ago
Pavel Rojtberg
e1503cc29e
calibrateCamera: specifiy what kind of re-projection error is returned
8 years ago
guoxuedong
e69253a4fb
Update exif.cpp
...
ExifReader::getExif may enter infinite loop with jpeg image which have no EOI.
For example, bytesToSkip may be set to 0 and fseek seems like fseek(f, -2 , SEEK_CUR) for image that end with RST7(FF D7) instead of EOI.
8 years ago
Rostislav Vasilikhin
7db43f9fff
fixed wrong equivalence in YUV conversion ( #7481 )
...
* fixed wrong equivalence in YUV conversion
* fixed channel order from YVU to YUV
8 years ago
Alexander Alekhin
da75d129fe
java: fix Calib3d test
8 years ago
monoid911
b879126584
Fix docs explaining the returnPoints argument of convexHull.
8 years ago
Alexander Alekhin
8e22b17919
java: backport test changes from master
8 years ago
Alexander Alekhin
0bdea2b714
core: fix absdiff (non-optimized, fp) to prevent "-0" results
8 years ago
Alexander Alekhin
8019498c6e
java tests fixes
8 years ago
Alexander Alekhin
fe29080d59
java: skip test in case of missed classes from opencv_contrib
8 years ago
Alexander Alekhin
d65df72754
java: fix testIsSubmatrix test
8 years ago
Alexander Alekhin
a936cb087e
calib3d: fix fisheye for test fisheyeTest.stereoCalibrateFixIntrinsic
8 years ago
Alexander Alekhin
69949025db
core: drop type/dims/rows/cols information in Mat::release()
8 years ago
k-shinotsuka
284006e336
add NEON code for RGB2Luv_f.
8 years ago
Michele Cancilla
0bc9a0db18
Improvement of sequential connected components Wu's algorithm and provide parallel version of both Wu's and Grana's algorithms (using TBB library)
8 years ago
Pavel Vlasov
dfb9c574a4
IPP 2017 filter2D fix;
...
filter2D IPP runtime check;
8 years ago
Alexander Alekhin
771fa5b8ac
test: change EPS in Objdetect_HOGDetector tests
8 years ago
Alexander Alekhin
f21f153a5f
test: backport check for Image_KernelSize_GaborFilter2d perf test
8 years ago
Tomoaki Teshima
3ea4f72e35
fix Core_MulSpectrum test on 64bit ARM + release mode
...
* fix issue 6536
* increase threshold in particular tests due to the difference of fmsub and fsub
8 years ago
Arek
866f8eb1e7
Merge pull request #7695 from ArkadiuszRaj:aravis-release-bug-fix
...
* Aravis: fixing releasing object when no communication with camera is possible
* Removing unnecessary include
8 years ago
Alexander Alekhin
0a543c5531
test: fix Legacy_StereoGC.regression assertion
8 years ago
Alexander Alekhin
19270eeab4
warnings
8 years ago
Alexander Alekhin
497d0fd2e7
build: OSSpinLock deprecation warning
8 years ago
Maksim Shabunin
21167b1bf1
Fixed several GCC 5.x warnings
8 years ago
Alexander Alekhin
39d7ecc93b
perf: disabled checks for magic numbers
...
Results are not bit-exact
8 years ago
Alexander Alekhin
dac37a0bc9
features2d: update rotation invariance test
...
Don't process keypoints near border, because after rotation border points
have contrast gradients with rotation border fill.
8 years ago
Alexander Alekhin
30cdcfa554
warnings
8 years ago
Alexander Alekhin
40aa8aa862
ffmpeg: check return value
8 years ago
Li Peng
6cb73356b1
laplacian ocl kernel optimization
...
This ocl kernel is 46%~171% faster than current laplacian 3x3
ocl kernel in the perf test, with image format "CV_8UC1".
Signed-off-by: Li Peng <peng.li@intel.com>
8 years ago
Vladislav Sovrasov
7c266ffffe
Add support of vector of vectors serialization to FileStorage
8 years ago
k-shinotsuka
cf5c400ecb
add SSE code for RGB2HLS_f.
8 years ago
Declan Moran
4d84e6efee
fix compiler error when building with gnu-5 toolchain (eg as currently shipped with crystax.org android ndk, and presumably soon with android studio).
...
"ts_perf.cpp ....error: 'errno' was not declared in this scope
int err=errno;"
8 years ago
Philippe Renon
e79f83e573
calib3d: fix missing cv::redirectError symbol error
...
happens on msys2 with gcc 6.2.0
see also http://stackoverflow.com/questions/38552221/undefined-reference-to-cvredirecterror-while-creating-shared-build-of-opencv-3
8 years ago