Robbert Klarenbeek
81b11ee463
Replace deprecated malloc.h
9 years ago
Roman Donchenko
9a5d7f1a0b
Backport PR #3813 to 2.4
...
It has already been partially backported by #6199 ; this commit completes
the backport.
9 years ago
Robbert Klarenbeek
dd510e1de9
Fix incompatibility with some C++11 implementations
9 years ago
Dan
a21ede9452
Thrust allocator usage.
9 years ago
Dan
7a934f9ee0
Compatibility and bug fixes.
9 years ago
Dan
a8ca560684
Fixed more missing async calls.
9 years ago
Dan
79ecefb51f
Implemented async calls.
9 years ago
Zhigang Gong
0b08d2559e
fix potential race condition in canny.cl.
...
See the below code snippet:
while(l_counter != 0)
{
int mod = l_counter % LOCAL_TOTAL;
int pix_per_thr = l_counter / LOCAL_TOTAL + ((lid < mod) ? 1 : 0);
for (int i = 0; i < pix_per_thr; ++i)
{
int index = atomic_dec(&l_counter) - 1;
....
}
....
barrier(CLK_LOCAL_MEM_FENCE);
}
If we don't put a barrier before the for loop, then there is a possiblity
that some work item enter this loop but the others are not, the the l_counter
will be reduced in the for loop and may be changed to zero, and the other
work items may can't enter the while loop. If this happens, it breaks the
barrier's rule which requires all the work items reach the same barrier.
And it may hang the GPU depends on the implementation of opencl platform.
This issue is raised at:
https://github.com/Itseez/opencv/issues/5175
Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com>
9 years ago
Dan
42c36c0c80
Linux bug fix for ThrustAllocator.
9 years ago
Прун Виктор
a90a576d76
fixed incorrect behaviour of move semantics for cv::Ptr, cv::Mat, cv::UMat in case when rvalue-reference references to *this.
9 years ago
berak
4555f9ac25
svmsgd.cpp, fix #6248
...
add a cast to double, to make vs compilers happy
9 years ago
Suleyman TURKMEN
826b5a2ef1
Update lda.cpp
...
typo correction
9 years ago
shruthikashyap
1fbc6ab05d
Adding the syntax and usage for cv2.undistortPoints().
9 years ago
Balint Cristian
f819323296
Fix AGAST keypoint declared size.
9 years ago
Piotr Semenov
00e91fd3d0
Fix that corrects the OpenCV's random access iterator distance: d(x,y) = -d(y,x)
9 years ago
Piotr Semenov
108ddc199a
Fix that corrects the OpenCV's random access iterator distance: d(x,y) = -d(y,x)
9 years ago
WANG Guoqin
8cfc87cf01
MacOSX / QTKit capture: trying to fix invalid timer call
9 years ago
Alexander Alekhin
cbd0ee21d5
revert: java bindings become CMake modules (loadable plugins)
...
This reverts part of commit 0db10a3052
9 years ago
Vladislav Sovrasov
e2434ab7c3
Use AKAZE detector instead of ORB in feature_homography test
9 years ago
Matthieu FT
78475a47a5
fix: bg substraction for float images with OpenCL
9 years ago
Krishnaraj Bhat
9b8013d193
gcc6: fix misleading indentation warning
...
cosmetic changes to fix this warning.
real bugs not found
9 years ago
Jason von Nieda
f4b502dd03
Adds supports for the majority of features2d to the Java wrappers:
...
* Adds the main features2d header to the parse list for the generator.
* Removes the manual definition of drawKeypoints and drawMatches since these are now included in the main header.
* Updates the generator to ignore SimpleBlobDetector, FlannBasedMatcher and DescriptorMatcher as these cause conflicts with the generator. This is okay since these were not previously included in the distribution anyway, so no harm is done.
9 years ago
Alexander Alekhin
ec66a3700f
logPolar/linearPolar: more accurate processing near zero angle slice
9 years ago
Maksim Shabunin
98fff4a601
Added separate hal::SepFilter2D class
9 years ago
Maksim Shabunin
17cd1dac06
HAL Filter2D interface: Updated according to comments
9 years ago
Maksim Shabunin
85b2c2ae58
Fixed build with older standalone IPP versions
9 years ago
Maksim Shabunin
8414c6518f
Fixed build with older ippicv
9 years ago
Maksim Shabunin
27abd4d3a3
Filter2D HAL interface
9 years ago
Alexander Alekhin
275bfcf99c
fix logPolar/linearPolar
9 years ago
aravind
dccbf50059
Fixed VS 2010 and option Za bug.
9 years ago
Vitaly Tuzov
d29eb2938c
Calibration test temporary disabled
9 years ago
Vladislav Sovrasov
22b028b64b
Fix warnings in python3
9 years ago
Vladislav Sovrasov
e4fed417d2
Add segmentation and object tracking python tests
9 years ago
Vladislav Sovrasov
0c6e09f060
Changes in facedetect test
9 years ago
Vladislav Sovrasov
87fc75c6d7
Improvements in tests, bugfix in digits_video sample
9 years ago
Vladislav Sovrasov
4e3a6328ba
Fixes in calibration and camshift tests
9 years ago
Vladislav Sovrasov
54c07ba0ff
Add 2 new tests, bugfixed in old tests
9 years ago
Vladislav Sovrasov
cb7cc81653
Add dft python test, fix platform depended result in morphology test
9 years ago
Vladislav Sovrasov
aaa43dc84f
Add morphology python test, fix python3 compabtibility in kmeans test
9 years ago
Vladislav Sovrasov
56571561b4
Add k-means python test, fix loading images in calibration test
9 years ago
Vladislav Sovrasov
5625d79508
Fix loading images in python tests
9 years ago
Vladislav Sovrasov
ab4d375349
Add new tests on python
9 years ago
Pavel Rojtberg
ff77f4d9ef
GStreamer: allow reading raw MJPEG data
9 years ago
Alexander Alekhin
a61b19b524
backport ffmpeg fixes
9 years ago
Elad Joseph
238b47dfce
Added param documentation
...
Added param description to remove doxygen warning
9 years ago
Elad Joseph
2234016a22
Added Subdiv2D class documentation
...
Added documentation to the Subdiv2D documentation, based on the previous
C API.
9 years ago
Péter Trombitás
410eb30c26
Fix for #6192 (Mismatching delete)
9 years ago
aravind
f4f1561781
Fixed cv::cuda::reduce bug.
9 years ago
Alexander Alekhin
d2e5f90f32
cmake: fix cv2.lib conflict for python2/3 bindings (MSVS)
9 years ago
Marina Noskova
3f0a51bda1
Fixed documentation.
9 years ago