peng xiao
df3997b108
Fix ocl::pyrUp
...
Use predefined OpenCL function to convert integers to floating points.
This is more accurate than before as it enables:
1. saturate cast
2. customized rounding
12 years ago
yao
1d1d28baf2
fix black screen when input Mat is large
12 years ago
peng xiao
ac21cabda2
Copy ocl::queryDeviceInfo interface from master to 2.4.
...
Affected functions surf.ocl, pyrlk.ocl and hog.ocl are updated with the change.
12 years ago
Andrey Kamaev
b8ed00bd64
Compile OpenCV with GCC visibility set to hidden
12 years ago
Andrey Kamaev
f856f78ac0
Update CMake scripts to recognize Qt 5.0
12 years ago
Andrey Kamaev
2665c39a0d
Fix build warnings from gcc 4.8
12 years ago
yao
e23884a238
fix the warnings in fft tests
12 years ago
Andrey Pavlenko
d5881bc00a
adding version info to test log
12 years ago
yao
ada8f92cc7
fix warnings, unify test names
12 years ago
peng xiao
e5ea018185
Let surf.ocl use the new queryDeviceInfo interface.
12 years ago
peng xiao
bfa0f02303
Rewrite queryDeviceInfo interface.
...
Previously the function may cause some unsafe issue. It is fixed now by introducing a template parameter.
12 years ago
Bo Li
81779d8287
fixed pca bug for fixed mean input
12 years ago
peng xiao
e14acabb3d
Fix ocl moudle build with latest Intel OpenCL SDK.
...
We found that cl.h file provided in latest Intel SDK muted deprecated interfaces.
12 years ago
peng xiao
69e6d0016e
Optimize stereobm a bit.
...
Speedup about 30% on 6730M GPU.
12 years ago
peng xiao
861de8a6e9
CL_PLATFORM_VENDOR should be CL_PLATFORM_NAME.
12 years ago
yao
b6313951dc
use clean EXPECT_MAT_NEAR (no string output)
12 years ago
yao
35c6860f06
further simplify the logics in filter tests
12 years ago
yao
1a53e2cfb2
remove interpolation.hpp
12 years ago
yao
3928c1ee26
add copyrights
12 years ago
yao
e4d3378230
simplify logics in filter tests, remove redundant code in arithm tests
12 years ago
yao
52dbbae82c
some cleanup, remove some commented codes
12 years ago
Brian McKinnon
36745a80c3
Added #include <limits> to files that were missing it.
12 years ago
peng xiao
d34e7eca60
Suppress warning when compiling deprecated OpenCL function on GNU compilers.
12 years ago
Egbert van der Wal
dc6a144396
add (optional) index argument to RetrieveFrame method
12 years ago
alexandre benoit
a5acc9ee1f
nicer interface with the use of InputArray and OutptArray instated of (const Mat&)
12 years ago
peng xiao
ed2199a497
Fix build
12 years ago
peng xiao
1eca49f40b
ocl: Enable backward binary portability for setTo function.
12 years ago
peng xiao
168c0b0385
Optimize ocl::stereobm.
...
1. Use macro defines for some parameters(radius).
2. Reduce local memory usage.
3. Fix accuracy problem on Intel GPU.
12 years ago
peng xiao
355bc691fc
Add OpenCL version 1.2 query into ocl::Context::supportsFeature().
...
Add backwards portability for OpenCL 1.1 when OpenCV executables
are compiled with OpenCL 1.2 profile support.
12 years ago
alexandre benoit
b58d9f1c2a
enhancing documentation
12 years ago
poiuytrez
bef6de9025
Fix tuto3 picture taken crash on all devices
...
A modification of the JavaCameraView is needed to avoid a crash when the
app is exited. It is a good practice to remove the callback after the
stopPreview method.
12 years ago
alexandre benoit
f5d2d7b29b
enhancing documentation
12 years ago
alexandre benoit
cf6e833169
trying to solve valarray pointer access problem, enhancing documentation
12 years ago
Luis Díaz Más
d13d5c0c12
Added setting feature of FPS in cap_libv4l
12 years ago
alexandre benoit
9adde75be3
updated doc+minor typo/buildbot reports correction
12 years ago
alexandre benoit
9c26387ce0
updated sources to correct buildbot warnings
12 years ago
alexandre benoit
25b482f1c9
updated/corrected documentation
12 years ago
alexandre benoit
a659e287fb
minor error correction
12 years ago
alexandre benoit
80e65e08b5
updated doc and interface code to solve compile warnings and errors
12 years ago
alexandre benoit
b70b5a3011
corrections required for portability. To be validated by buildbot
12 years ago
alexandre benoit
1976b3d9b6
updated doc
12 years ago
ericgreveson
19794e6857
Fix for spurious assert in cv::compareHist
...
When comparing histograms that look like multi-channel images (e.g a 3D histogram, of 4x4x4 bins, might appear as a CV_32FC4 matrix), cv::compareHist would complain because it was expecting the matrix type() == CV_32F. Now we test matrix depth() == CV_32F instead.
12 years ago
alexandre benoit
9549949228
minor chnges for conflict removal
12 years ago
Alexander Smorkalov
456c56fe90
NullPointerException in case of error on opening native camera fixed.
12 years ago
ShengyinWu
ef5578a7ce
Fixs: After scaling back to original image, some detected ROI will outside the original image ROI
12 years ago
alexandre benoit
737046916c
activated parallelized gradient computation
12 years ago
alexandre benoit
3b15eefcad
forgot method name update
12 years ago
alexandre benoit
b62d101115
updated retina interface for cleaner use, following OpenCV standards
12 years ago
Roman Donchenko
2dc8642508
Changed convexHull's documentation to essentially invert the meaning of ``clockwise``.
...
The orientation of convexHull's result is currently the opposite of what the
documentation would suggest:
>>> import cv2, numpy as np
>>> points = np.array([[0,0],[0,1],[1,0]], dtype=np.int32)
>>> cv2.convexHull(points, clockwise=False)
array([[[1, 0]],
[[0, 1]],
[[0, 0]]], dtype=int32)
>>> cv2.convexHull(points, clockwise=True)
array([[[0, 0]],
[[0, 1]],
[[1, 0]]], dtype=int32)
Changing the function itself is probably not a good idea at this point, so
this fixes the documentation by flipping the coordinate system.
I also removed the mention of the origin, since it's irrelevant for this
function.
12 years ago
Dominik Rose
cfaae5917b
Calib3d documentation:
...
- fixed reference to Slabaugh
12 years ago