catree
1c409abe9c
Add example image about distortion effect.
8 years ago
Arek
4ea27061ee
Merge pull request #7472 from ArkadiuszRaj:aravis-autoexposure
...
Aravis SDK: Basic software based autoexposure control
* Basic software based autoexposure control
* Aravis autoexposure: skip frame taken while changing exposure setup
8 years ago
abratchik
8da1303179
add vector_vector_KeyPoint support to python wrappers
8 years ago
abratchik
adbb1471fc
fix regression issues in Feature2D and DescriptorMatcher interfaces
8 years ago
Tomoaki Teshima
ea4ff91861
fix error from performance test of LK pyramid
8 years ago
Feng Zhoutian
316fece020
fix the problem: the headers of cudev module are not installed if BUILD_opencv_world
8 years ago
abratchik
4207ebbce7
fix for VideoCapture crash
8 years ago
Vitaly Tuzov
1d045f2731
Added test for drawing beyond 32768 column
8 years ago
Vitaly Tuzov
26c9889c6b
Fix for incorrect line drawing beyond 32768 row or column
8 years ago
Pavel Rojtberg
a37a6bd783
fix BGR <> RGB swap
...
we are drawing on a BGR image declared as RGB, so we should not swap
components here either.
8 years ago
Pavel Rojtberg
8cc09f1784
highgui: allow wrapping cv::addText
...
also correctly forward spacing parameter in fontQt
8 years ago
StevenPuttemans
ca762a6ba7
allow minObjectSize==maxObjectSize for single scale detection capability
8 years ago
abratchik
084c595855
fix for legacy FeatureDetector and DescriptorMatcher classes
8 years ago
Alexander Alekhin
c16c803fe9
java: integrate code from base modules
...
To resolve undefined "Mat_to_vector_KeyPoint" error
8 years ago
Juha Reunanen
4e7f28811c
Merge pull request #7452 from reunanen:issue-7409-2.4
...
Fix findContours crash for very large images (v2.4)
* Cast step to size_t in order to avoid integer overflow when processing very large images
* Change assert to CV_Assert
8 years ago
Juha Reunanen
0f387cda8f
Merge pull request #7451 from reunanen:issue-7409
...
Fix findContours crash for very large images (#7451 )
* Cast step to size_t in order to avoid integer overflow when processing very large images
* Change assert to CV_Assert
8 years ago
Tomoaki Teshima
1ef740fa2c
use universal intrinsic implementation for calcSharrDeriv
8 years ago
Tomoaki Teshima
ea6410d1e7
use universal intrinsic in threshold
...
* add performance test for 32F and 64F threshold
* requires update of opencv_extra
8 years ago
abratchik
789b35d813
improved fix for java wrapper generator (gen_java.py) to avoid generation of java methods with duplicate signatures(v3)
8 years ago
Alexander Alekhin
fe8501c931
ocl: fix SVM code
8 years ago
StevenPuttemans
947f32d2e0
add border replicate note
8 years ago
ArkadiuszRaj
19bc3f4d17
Chenge arv_camera_abort_acquisition to arv_camera_stop_acquisition
8 years ago
catree
ce7811e5dd
Add distortion example images for calib3d documentation.
8 years ago
ArkadiuszRaj
8bd595acfe
fourcc support, improved buffer handling, check if exposure, gain & fps properties are available
8 years ago
matze
d9f6a06773
Adding check for IPP if UMat and OpenCL is available in Sobel and Scharr.
8 years ago
ArkadiuszRaj
48ae99ecef
Support for MONO8 & MONO12 pixel formats
8 years ago
Alexander Alekhin
714db4cf0d
java: fix Ptr<> code generation
...
Before:
Ptr<Dictionary>((cv::aruco::Dictionary*)dictionary_nativeObj)
After:
Ptr<cv::aruco::Dictionary>((cv::aruco::Dictionary*)dictionary_nativeObj)
8 years ago
Alexander Alekhin
5da8d65371
eliminate compiler warnings
8 years ago
ArkadiuszRaj
d80fd0c85c
Missing declaration
8 years ago
abratchik
be028d0774
fix for #7420 , #7421
8 years ago
ArkadiuszRaj
70c12e5407
Basic support for GigE cameras via Aravis SDK
8 years ago
ArkadiuszRaj
797030aa90
Solution to issue #7408
8 years ago
Graham Fyffe
57be99ff18
Added getLeadingEdges function to subdivision2d
8 years ago
Quentin
9b4cf896fd
Added AKAZE features in the stitcher pipeline (issue #6474 )
8 years ago
Jcrist99
770c69a978
fix for feature2d java wrappers as described in this post: http://ans … ( #7372 )
...
* fix for feature2d java wrappers as described in this post: http://answers.opencv.org/question/101675/surfsift-java-wrapper-for-opencv-3xosx-1011/
* fix for feature2d java wrappers as described in this post: http://answers.opencv.org/question/101675/surfsift-java-wrapper-for-opencv-3xosx-1011/
* rollback of one change as requested (similar change already merged)
8 years ago
StevenPuttemans
524c61279b
replace principle by principal
8 years ago
Vadim Pisarevsky
fad0598634
normHamming done with AVX 2 intrinsics (ver 2) ( #7405 )
...
* normHamming done with AVX 2 intrinsics.
* fixed compiling AVX2-optimized norm hamming with MSVC
8 years ago
k-shinotsuka
880ace2eb3
add simd code when dcn equals 4 at HSV2RGB_b().
8 years ago
k-shinotsuka
db8b3252bf
add simd code when scn equals 4 at RGB2HLS_b().
8 years ago
k-shinotsuka
c1745539c4
add simd code when dcn equals 4 at HLS2RGB_b().
8 years ago
k-shinotsuka
a5f493a763
add simd code when scn equals 4 at Lab2RGB_b().
8 years ago
Vadim Pisarevsky
83f2eb79f1
make sure that the empty mat is copied to UMat properly - i.e. UMat becomes empty. Before the patch such copy operation crashed
8 years ago
Tomoaki Teshima
f6350bdfa8
remove duplicated include
8 years ago
k-shinotsuka
47c792ecc0
add simd code when scn equals 4 at RGB2Luv_b().
8 years ago
Alexander Alekhin
fef677f51a
fix defines typo
8 years ago
Tomoaki Teshima
841ccccada
use universal intrinsic in canny
...
* add v_abs for universal intrinsic
* add test of v_abs in test_intrin
* fix compile error on gcc
* fix bool OR operation
8 years ago
k-shinotsuka
e310c3f9f4
add simd code when dcn equals 4 at Luv2RGB_b().
8 years ago
Alexander Alekhin
26a32dcbf6
videoio: remove 'const' from getProperty
...
'const' is available in OpenCV 3.x only
8 years ago
Alexander Alekhin
411e551335
ocl: autogenerated code
8 years ago
Alexander Alekhin
a0add98b30
ocl: eliminate build warning
...
Templates are replaced by macro
8 years ago