Alexander Smorkalov
77df8730ef
Tutorial-5 sample extended.
...
Application menu reorganized;
Resolution control added.
12 years ago
Eric Christiansen
ad326cb0be
adds desktop java junit tests
12 years ago
Andrey Kamaev
c8b658fdb6
Merge pull request #237 from asmorkalov:android_make_install_fix
12 years ago
Andrey Kamaev
48f19fba76
Merge pull request #235 from asmorkalov:doc_manager_selection
12 years ago
Alexander Smorkalov
1555922228
OpenCV for Android SDK installation improved;
...
ReadMe.txt for OpenCV Manager added;
share folder excluded from SDK.
12 years ago
Andrey Kamaev
8763ad6c99
Fix ccache search in Android CMake toolchain.
12 years ago
Andrey Kamaev
35ac95930f
Merge pull request #236 from asmorkalov:javadoc_fix
12 years ago
Andrey Kamaev
b35fa6c4ff
Merge pull request #202 from Daniil-Osokin:calcHist
12 years ago
Alexander Smorkalov
d7c89fc649
A lot of javadoc warnings duting javadoc build (Bug #2647 ) issue fixed
...
Black list of entities, that are not implemented in Java API added to javadoc generator
12 years ago
Vadim Pisarevsky
a75e5ac277
Merge pull request #232 from asmorkalov:compiler_bug_workaround
12 years ago
Andrey Kamaev
2c56a09bee
Merge pull request #226 from taka-no-me/equalizeHist
...
Fix equalization formula in equalizeHist function & rewrite in C++
12 years ago
Daniil Osokin
98d7d99244
Add threaded version of equalizeHist
12 years ago
Alexander Smorkalov
3c09b075fc
OpenCV Manager selection chapter added to documentation.
12 years ago
Alexander Smorkalov
dfa4b2fefa
Workaround for gcc overoptimization compiler bug.
12 years ago
Daniil-Osokin
cd501d947c
perf tests for calcHist 2-3D case
12 years ago
Daniil-Osokin
7d94236c14
TBB version of calcHist
12 years ago
Vadim Pisarevsky
09be997ed8
Merge pull request #225 from pieleric:2.4
12 years ago
Vadim Pisarevsky
5c88577138
Merge pull request #227 from taka-no-me:sanity_MatND
12 years ago
Andrey Kamaev
80a1d569ca
Add support for multidimentional matrices into the sanity checks
12 years ago
Andrey Kamaev
3de6846d12
Merge pull request #224 from wswld:2.4
12 years ago
Andrey Kamaev
0bbba847a4
Fix equalization formula in equalizeHist function & rewrite in C++
...
Old implementation did
lut[i] = 255 * (count(Y <= i)) / (width * height)
which actually shifts uniform histograms.
From now histogram is equalized as
C = count(Y == min(Y))
lut[i] = 255 * (count(Y <= i) - C) / (width * height - C)
12 years ago
Éric Piel
7701fa7a63
highgui: fix segfault on CvCapture_GStreamer::open
...
when compiled with GStreamer, open (of a file) segfaults.
Fix was suggested by Bostjan Vesnicer.
12 years ago
Vadim Pisarevsky
9b09f09b9a
Merge pull request #222 from taka-no-me:perf_verify_sanity
12 years ago
Vsevolod Glumov
3f417f1ec3
Fixes for issues #2570 , #2492 , #2559 , #2489 , #2592 .
12 years ago
Andrey Kamaev
5a407153bd
Fix sanity checks in stitching test
12 years ago
Andrey Kamaev
817a4c0c30
Merge branch 2.4 into perf_verify_sanity
12 years ago
Andrey Kamaev
932204d197
Added thresholds to some sanity checks
12 years ago
Andrey Kamaev
e1afb1409f
Add --perf_verify_sanity option to performance tests
...
This option provides an easy way to identify tests having no regression data
for sanity checks
12 years ago
Andrey Kamaev
64cf113d23
Merge pull request #215 from asmorkalov:manager_depricated_packages
12 years ago
Andrey Kamaev
770a466dd2
Merge pull request #223 from taka-no-me:perf_tests
12 years ago
Andrey Kamaev
b876308d77
Merge pull request #200 from asmorkalov:t5_fix
12 years ago
Vadim Pisarevsky
5cc0abffa5
Merge pull request #221 from asmorkalov:doc_install_fix
12 years ago
Andrey Kamaev
6e244c83cd
Corrected sanity checks in several perf tests
...
Also fixed a typo in performance testing framework and removed hardcoded
temporary file name from highgui perf test
12 years ago
Alexander Smorkalov
e5468008aa
Installation of documents fixed.
12 years ago
Alexander Smorkalov
f29c727ada
Tag "safe to remove" added to unused packages;
...
OpenCV Manager version++.
12 years ago
Andrey Kamaev
60ad505a63
Merge pull request #212 from taka-no-me/fix_2602
...
Prevent imread from illegal memory access (Bug #2602 )
12 years ago
Andrey Kamaev
2bf56961c0
Merge pull request #204 from asmorkalov/manager_internal_lib
...
Feature #2565 implementation
12 years ago
Andrey Kamaev
f7dc98f67b
Merge pull request #205 from taka-no-me/gtest_r629
...
Update googletest to the latest upstream
12 years ago
Andrey Kamaev
9c6eed0ba3
Merge pull request #206 from asmorkalov/manager_version_fix
...
Bug #2595 in OpenCV Manager fixed.
12 years ago
Andrey Kamaev
7660fe03a6
Merge pull request #214 from jmunk1/bugfix-2610
...
Fixed typo in OpenCVDetectOpenCL.cmake that resulted in cmake not findin...
12 years ago
Andrey Kamaev
e21884f4c4
Merge pull request #219 from kirill-kornyakov/hack-hough-lines-sanity-test-on-win32
...
Ugly hack to make HoughLines sanity check pass on Windows
12 years ago
Kirill Kornyakov
cdbbfc98e1
Ugly hack to make HoughLines sanity check pass on Wun32
12 years ago
Andrey Kamaev
7c6191ec11
Refactored run.py script and temporary file generation logic
...
* use OPENCV_TEMP_PATH environment variable on all platforms
* fix cleanup after OpenCV tests on Windows
* add --list flag to output names of all tests found
* do not override user-passed --perf_min_samples and --perf_force_samples
options by --check flag
* fix complier checks inside run.py
12 years ago
Alexander Smorkalov
d550f95347
Date and time added to saved file name.
12 years ago
Justin Muncaster
709a1cc083
Fixed typo in OpenCVDetectOpenCL.cmake that resulted in cmake not finding OpenCL on windows.
12 years ago
Andrey Kamaev
1821d21f5b
Prevent imread from illegal memory access (Bug #2602 )
...
The change is based on pull request #211 .
12 years ago
Alexander Smorkalov
257d8df1d4
Bug with skiped packages fixed.
12 years ago
Alexander Smorkalov
d2ed8e5f30
Bug #2595 in OpenCV Manager fixed.
...
OpenCV Manager 2.x marks old 2.4.2 binary package for Tegra as "in use".
The latest version of OpenCV library compatible with platform is used now.
12 years ago
Alexander Smorkalov
4ebcf2b224
GetPublicName function removed for OpenCV LibraryInfo class;
...
Some OpenCV Manager UI behavior updates;
CMake build fix.
12 years ago
Andrey Kamaev
b0d3830399
Update gtest to upstream r629
12 years ago