Vikas Dhiman
f15dc72b89
Removed misleading comment and added the divisibility test to ::run function.
12 years ago
Vladislav Vinogradov
3c32fc1329
removed obsolete methods from gpu::Stream
12 years ago
abidrahmank
a1ea1a7ec5
boxpoints documentation
12 years ago
abidrahmank
bcf9117957
Added missing python functions in highgui documentation
...
setMouseCallback
createTrackbar
12 years ago
abidrahmank
37f4e400e4
Added cv2.boxPoints() functionality to Python bindings (Feature #2023 )
...
http://www.code.opencv.org/issues/2023
eg:
In [3]: box = ((10,10),(5,5),0)
In [4]: cv2.boxPoints(box)
Out[4]:
array([[ 7.5, 12.5],
[ 7.5, 7.5],
[ 12.5, 7.5],
[ 12.5, 12.5]], dtype=float32)
12 years ago
Vladislav Vinogradov
98bd401534
fix gpu::DeviceInfo compilation under linux
...
glibc defines major and minor macros
which conflict with gpu::DeviceInfo methods with the same name
12 years ago
peng xiao
290c8db0a8
Revise naming for getOclMat function.
12 years ago
peng xiao
e129638263
Add a workaround to interpolate between oclMat and Input/OutputArray.
12 years ago
Roman Donchenko
57317c3196
Use log formatting as intended.
12 years ago
Roman Donchenko
3e2c456313
A few minor improvements to the XLS report generator.
...
* In comparison column headers, switched the order of labels, so that
it's "to" vs "from".
* When a test was present, but not run successfully, put its status in
the corresponding cell instead of coloring it gray.
12 years ago
Vladislav Vinogradov
f08d75a84b
removed obsolete API
12 years ago
peng xiao
c1f4fe1637
Fix a bug of convertTo.
...
The bug was found that all 3-channel oclMat's were converted to
4-channel oclMat's after using convertTo function.
12 years ago
Roman Donchenko
1ed5fb937d
Give cv::ocl::CLAHE a virtual destructor, for the usual reasons.
12 years ago
Vladislav Vinogradov
50166d2734
fixed compilation with CUDA 4.2
12 years ago
Roman Donchenko
d58421c08e
Make version-related test properties more useful.
...
Namely, normalize their names to a common convention and remove useless text
from their values.
12 years ago
Vladislav Vinogradov
4b983679a5
fix gpuarithm module compilation (Bug #3103 )
12 years ago
yao
2c198f6cd6
revise accuracy and perf tests
12 years ago
yao
26c246140a
optimize hog
12 years ago
Roman Donchenko
4af7d65224
Made tests record information about CPU features and Tegra optimization status.
12 years ago
Roman Donchenko
24d84a45b1
Made tests record in the XML output which parallel framework was used.
12 years ago
Vladislav Vinogradov
1492b20472
fix gpu warnings with signed/unsigned char
12 years ago
Alexander Smorkalov
16c4aad36d
Java/Python bindings for computeCorrespondEpilines added.
...
Simle Java test for computeCorrespondEpilines added.
12 years ago
Roman Donchenko
584f0745d0
Made xls-report.py ignore tests that were not successful.
12 years ago
Roman Donchenko
0f1156bbb6
Made the order of tests in XLS reports deterministic.
12 years ago
Roman Donchenko
4d7b1b5ede
In the XLS report, enabled word wrapping for header cells.
...
Otherwise, Excel ignores line breaks in them.
12 years ago
Roman Donchenko
6ff207b53a
Added a new and improved version of the XLS report generator.
12 years ago
Roman Donchenko
f003e29dc0
Updated testlog_parser.py to the latest version from the private repo.
12 years ago
Vladislav Vinogradov
4e29f0ee6d
updated documentation
12 years ago
Alexander Shishkov
24fd2cc326
updated licenses
12 years ago
Alexander Shishkov
5db08961ce
fixed Kirill's comments
12 years ago
Vladislav Vinogradov
24108f8110
updated documentation
12 years ago
Andrey Pavlenko
01e9733155
fix for #3077
...
removing "-fvisibility=hidden" gcc option due to lack of `__attribute__ ((visibility("default")))` in jni_md.h/JNIEXPORT
12 years ago
Vikas Dhiman
dbc9b4db0c
support elementwise division for Matx with "/" operator.
12 years ago
Vladislav Vinogradov
a380c473b9
switched to Input/Output Array in reprojectImageTo3D & drawColorDisp
12 years ago
Vladislav Vinogradov
3a02e599e0
refactored DisparityBilateralFilter
12 years ago
Vladislav Vinogradov
be9bb8f18b
refactored StereoConstantSpaceBP
12 years ago
Vladislav Vinogradov
d0e89337da
refactored StereoBeliefPropagation
12 years ago
Vladislav Vinogradov
dd6d58f873
refactored StereoBM
12 years ago
Vladislav Vinogradov
4317cd1ffa
refactored 1D Sum Filters
12 years ago
Vladislav Vinogradov
4bb297afc2
refactored Image Rank Filters
12 years ago
Vladislav Vinogradov
5720eaf354
refactored Morphology Filters
12 years ago
Vladislav Vinogradov
12ae11e2ff
refactored Separable Linear Filters
12 years ago
Vladislav Vinogradov
ee7eb1b807
refactored Laplacian filter
12 years ago
Vladislav Vinogradov
1eedc6c42a
refactored Linear Filter
12 years ago
Vladislav Vinogradov
fcfcd4cbce
refactored box filter
12 years ago
Ivan Korolev
fee8121040
Added regression tests for SURF/SIFT (related to #2892 )
12 years ago
Alexander Shishkov
0cee15eb7f
Updated iOS camera. Added rotation flag. Added functions to lock/unlock focus, white balance and exposure.
12 years ago
Vladislav Vinogradov
a4750f49c6
fix for bug #3068 (PCA::computeVar for double input):
...
The matrix g can have CV_32F or CV_64F type, but g.at uses only float template.
This fix adds specialization for double type.
12 years ago
peng xiao
e6b18fc492
Fix a bug caused by NDEBUG macro; it is now removed.
...
Revise some descriptions of the enums.
12 years ago
Ivan Korolev
58fa401b4d
Fixed a bug #2405
12 years ago