Maria Dimashova
97e36b9375
fix a compile error in case of building without highgui
12 years ago
marina.kolpakova
68d04d28b6
replace offsets in surf to simple copy for better speed
12 years ago
Andrey Kamaev
8daebeac8a
run.py: add --check option for easy run of sanity checks
12 years ago
Andrey Kamaev
9db1d9ba13
run.py: improve handling of multiple Android devices
...
* do not lose auto-selected device while running several tests
* reduce output noise
* list available devices if unable to auto-select device
* fix error message when no devices connected
12 years ago
marina.kolpakova
be0c20b758
align grid by 4
12 years ago
marina.kolpakova
285d6320be
add #/usr/bin/env python to all python files
12 years ago
Alexander Smorkalov
3282e08f55
Default native library path for native camera updated.
...
New versions tries to search library in arm-v7a and Manager packages only.
12 years ago
Alexander Smorkalov
aa4e6a8a83
Issue #2547 Native camera does not work on Google Nexus 7 with Android 4.2 fixed;
...
Issue #2506 Unnecessary log printouts in OpenCV::camera fixed;
Native camera for MIPS Android 4.1.1 added.
Build script for camera updated.
12 years ago
Andrey Pavlenko
cfd634ca3e
Improving compatibility with the latest Android SDK (r21) and NDK (r8c).
...
- Adding Android SDK/ADT r21 compatibility;
- fixing stl headers path for new ndk;
- fixing native API level for Android projects
12 years ago
Andrey Kamaev
04481d9ef4
Fix Android build with clang compiler
12 years ago
Alexander Smorkalov
66a1ea7604
Test execution inside Eclipse fixed;
...
OpenCV testing via OpenCV Manager implemented.
12 years ago
Ilya Lavrenov
4abf0b3193
thread-safe VideoWriter and VideoCapture
12 years ago
Alexander Mordvintsev
9cfa51a483
added CV_OUT to StereoVar output paramiter
12 years ago
Vladislav Vinogradov
a9919e01d0
fixed bug in gpu::HoughLines
12 years ago
Vladislav Vinogradov
606c23b9aa
fixed gpu module tests
...
uses old CommandLineParser class
12 years ago
Andrey Kamaev
a126532cb7
Fix OS X build warnings
12 years ago
Andrey Kamaev
b131dfeecd
Build tutorial codes together with other samples
...
These codes should be included into regular builds.
12 years ago
Andrey Kamaev
8c9c2b3a03
Fix build on Windows with OpenGl enabled
...
There was missing windows.h include in OpenGL interop code.
12 years ago
Andrey Kamaev
e5ffbf9498
Fix stream output operator for Vec<uchar,n>
...
This fixes output for 8U and 8S vector depths.
They were mistakenly printed as characters instead of numbers.
12 years ago
Vadim Pisarevsky
2e54e2a586
fixed problem with LBPHFaceRecognizer::update() without breaking binary compatibility.
12 years ago
Vadim Pisarevsky
9163471987
improved accuracy of 3x3 invert on poorly-conditioned matrices (bug #2525 )
12 years ago
Vladislav Vinogradov
a0be7b57f5
fixed bug in gpu::PyrLKOpticalFlow::dense
...
vector index out of range
12 years ago
Vadim Pisarevsky
9a08b7be45
fixed compile problem with the old Xcode (<4.5)
12 years ago
Andrey Kamaev
4a2f626d85
Remove "-rc" suffix from version
12 years ago
Andrey Kamaev
dbb5a32453
Use Tegra version of cv::FAST
12 years ago
Vadim Pisarevsky
42471c082f
possibly fixed compile errors in GPU module on Windows
12 years ago
marina.kolpakova
97cab339d2
fix Connected Components Labeling test crash
12 years ago
Kirill Kornyakov
1c77f0abfe
Rewrote abs documentation without funcx, so now :ocv:funcx: is used only for operator()
12 years ago
Kirill Kornyakov
2efd9b6ad7
Fixed a couple of minor issues in Javadocs
12 years ago
marina.kolpakova
7a5b9a6b7f
replase __APPLE__ marco with __clang__
12 years ago
Vadim Pisarevsky
d9d4e8df6f
fixed bugs #2300 (Vector::dot) and #2467 (build with Xcode 4.5 with --stdlib=libc++)
12 years ago
Andrey Kamaev
e3be5f138a
Fixed sanity checks in several performance tests
12 years ago
Alexander Smorkalov
34896529d5
Review comments applied.
12 years ago
Andrey Kamaev
fd4909360f
Remove windows.h include from opencv2/core/internal.hpp to avoid conflicts with TBB library.
12 years ago
Andrey Kamaev
7267d518d5
Fix build in Visual Studio 2005
12 years ago
Alexander Smorkalov
a1a2cb0aeb
OpenCV Samples testing problems fixed:
...
Memory leak in color-blob-detection sample fixed;
Default face size in face-detection is set to 20%;
Error handling improved;
Some possible mat leak fixed;
Manager verison and engine interface version incremented to fix incompatibilities;
Docs updated;
12 years ago
Vadim Pisarevsky
849a8c8d20
fixed many errors in warnings in rst docs; added ocl module description (by Niko Li)
12 years ago
NikoKJ
2045c85ad5
a minor bug fix for brute force
12 years ago
Vadim Pisarevsky
adc1d94e95
updated patch for tests; reenabled SURF & Denoising; removed fixes in ocl tests, since this is already fixed in another pull request
12 years ago
alexandre benoit
08ff5f92f4
minor updates for doc redirections and tutorial images size
12 years ago
Alexander
b0106ca25e
Test data form features2d updated.
12 years ago
NikoKJ
9ccdd17376
eliminate all the warnings on win32 and win64
...
add a new function abssum
fix the bug of test and perf because someone remove non-free module from cmakelist.txt
12 years ago
Vadim Pisarevsky
63bd6f9adf
fixed compile errors in ocl tests; disabled a few problematic tests
12 years ago
Andrey Kamaev
ad982f4ed6
Turn off video IO perf tests on Android
12 years ago
Andrey Kamaev
fcad269e53
Specify sanity threshold for WarpPerspective perf test
12 years ago
Andrey Kamaev
84934f7bfc
Fix SHORT data type support in Algorithm
...
* typo in Algorithm::addParam for 'short' data type which results in segmentation fault on ARM
on attempt to set type property for FAST using setter inherited from Algorithm
* added short type support to read/write methods
* improved some error messages
12 years ago
Alexander Smorkalov
83d8bc8c55
Tutorial 1 updated. Execution time camera switching implemented.
...
Some unification done to simplify camera switching.
12 years ago
Alexander Smorkalov
016b2cadb0
Issue 2473 Service connection leak in OpenCV Manager installation waiting fixed.
...
Some code refactoring done.
12 years ago
Alexander Smorkalov
9217095955
Issue 2472 Android samples crash on Camera.StartPreview on Android 4.1 fixed.
12 years ago
Andrey Kamaev
63397e825c
Cleanup CMakeLists.txt of ocl module
12 years ago