Alexander Alekhin
42ba5c7d16
fix GCC 4.9 warnings
10 years ago
Roman Donchenko
72ddeea479
FREAK: add missing field initialization
10 years ago
Gleb Gladilov
07de67c32f
Added test of minMaxLoc on filling with maximums of int
10 years ago
Gleb Gladilov
c467d0d553
Fixed minMaxLoc and test functions
10 years ago
Roman Donchenko
9e50cf5375
Refactor a section of icvRotatingCalipers to work around a GCC bug
...
https://bugs.launchpad.net/ubuntu/+source/gcc-4.9/+bug/1474304
10 years ago
Roman Donchenko
2e86d46cf2
CV_ChessboardDetectorTimingTest: don't ignore missing test data
10 years ago
Vincent Rabaud
50842b9036
get code to compile on Ubuntu Saucy
...
A define was forgotten for the codecs and there was a typo for
another.
(cherry picked from commit f052b0bc4d
)
Conflicts:
modules/videoio/src/ffmpeg_codecs.hpp
10 years ago
Vadim Pisarevsky
3d6413cfc6
fixed compile warnings; hopefully fixed test failures
...
(cherry picked from commit 30912b49f3
)
Conflicts:
modules/videoio/src/cap_ffmpeg_impl.hpp
modules/videoio/src/ffmpeg_codecs.hpp
10 years ago
Vadim Pisarevsky
799622affd
make sure opencv builds fine with the recent versions of libav (e.g. from Ubuntu 14.10)
...
(cherry picked from commit 2b2e3ee93c
)
Conflicts:
cmake/OpenCVFindLibsVideo.cmake
modules/videoio/src/cap.cpp
modules/videoio/src/cap_ffmpeg_impl.hpp
modules/videoio/src/ffmpeg_codecs.hpp
modules/videoio/test/test_ffmpeg.cpp
10 years ago
howtobeahacker
9eaac6105f
correct covariation matrix formula in Harris corner detector
10 years ago
Ilya Lavrenov
083aced3b4
fixed OS names
10 years ago
Andrey Pavlenko
72ec9c159e
releasing native memory of temp `Mat` objects in generated Java code
10 years ago
Andrey Pavlenko
5b00d9da49
releasing native memory in Java converters
10 years ago
Ilya Lavrenov
11d1909e6b
fixed warning
10 years ago
Lectem
3c6fe75149
fix mutex for uclibc
...
The uClibc doesn't have pthread_spin_* implemented on their 'old' linux threads.
Since it is on linux, we have to check if uclibc is using this implementation or not.
10 years ago
Vladislav Vinogradov
d58d277707
do not loose logs from nvidia tests
10 years ago
Vladislav Vinogradov
95eed59f2d
use fixed seed for RNG in gpu SolvePnPRansac test
10 years ago
Vladislav Vinogradov
62bc647731
use cv::theRNG() instead of ::rand() in gpu::solvePnPRansac
10 years ago
Christian Richardt
242e64c08d
Fixed triangulation bug http://code.opencv.org/issues/4334 .
10 years ago
Nguyen Nguyen
58dd70e8dc
Revert support for audio
10 years ago
Nguyen Nguyen
53ff537f1c
temporary fixes
10 years ago
Nguyen Nguyen
a5814871d9
Adding audio to opencv
10 years ago
Vladislav Vinogradov
f10537cdd6
fix tests compilation issue on Windows
10 years ago
Vladislav Vinogradov
9d294cbcf5
fix performance tests in tiny mode
10 years ago
Vladislav Vinogradov
f1bec940b1
fix accuracy tests in tiny mode
10 years ago
Vladislav Vinogradov
dd93d48be4
turn on stereob instantiates that required for tests
10 years ago
Vladislav Vinogradov
ad3123adfd
turn on some instantiates that required for other primitives
10 years ago
Vladislav Vinogradov
f939d80f4c
fixed seg faults
10 years ago
Vladislav Vinogradov
ee316758ca
reduce color instantiates for tiny build
10 years ago
Vladislav Vinogradov
6d7a61cbdc
reduce copy_make_border instantiates for tiny build
10 years ago
Vladislav Vinogradov
b44b1ab47b
reduce matrix_reductions instantiates for tiny build
10 years ago
Vladislav Vinogradov
2e47a1a61b
reduce pyramids instantiates for tiny build
10 years ago
Vladislav Vinogradov
72685cf01c
reduce resize instantiates for tiny build
10 years ago
Vladislav Vinogradov
612888c066
reduce remap instantiates for tiny build
10 years ago
Vladislav Vinogradov
e7b55f4982
reduce warp instantiates for tiny build
10 years ago
Vladislav Vinogradov
3004f5fa30
reduce stereobm instantiates for tiny build
10 years ago
Vladislav Vinogradov
9682d2afff
reduce element_operations instantiates for tiny build
10 years ago
Vladislav Vinogradov
87d655325c
reduce add_weighted instantiates for tiny build
10 years ago
Vladislav Vinogradov
db25e44a17
reduce brute_force_matcher instantiates for tiny build
10 years ago
Vladislav Vinogradov
b7a9e672c5
reduce bilateral filter instantiates for tiny build
10 years ago
Vladislav Vinogradov
8e49ab1d3b
reduce filter2d instantiates for tiny build
10 years ago
Vladislav Vinogradov
00c36e88ef
reduce separable filter instantiates for tiny build
10 years ago
Vladislav Vinogradov
d87c30dc84
Bug #4315 : fix CUDA bitwise operations with mask
10 years ago
Nguyen Nguyen
9682430a69
Adding code to deal with audio output
10 years ago
Nguyen Nguyen
b69ffe6376
Fixed memory leak when recording video in iOS
10 years ago
Nguyen Nguyen
1f72815637
Exporting videoFileString to outside world
10 years ago
Martin Ueding
9e29762838
Add example data types for calibrateCamera call
...
It took me a while to figure out what was meant with
OpenCV Error: Assertion failed (i < 0) in getMat
While searching for this error message I found [a list of error
messages](https://adventuresandwhathaveyou.wordpress.com/2014/03/14/opencv-error-messages-suck/ )
which also explained what the problem was: The data type for `rvecs` was
not a simple `cv::Mat` but a `std::vector<cv::Mat>`.
After I fixed that, I got the next error message:
OpenCV Error: Assertion failed (ni > 0 && ni == ni1) in
collectCalibrationData, file
/build/buildd/opencv-2.4.9+dfsg/modules/calib3d/src/calibration.cpp,
line 3193
The problem here was that my data type for the `objectPoints` was just
`vector<Vec3f>` and not `vector<vector<Vec3f>>`.
In order to save other people the time looking for this, I added
explicit examples of the needed data types into the documentation of the
function. I had to re-read the current version a couple of times until I
can read the needed levels of `vector<>`. Having this example would have
really helped me there.
Conflicts:
modules/calib3d/include/opencv2/calib3d.hpp
10 years ago
Pierre Moulon
901d4995e3
Fix a typo error
...
Fix a typo error
Conflicts:
modules/features2d/include/opencv2/features2d.hpp
10 years ago
Adi Shavit
aad95c7d8c
Added call to clone() to avoid unexpected change to external data.
...
- Fix both stitching_detailed.cpp sample and cv::Stitcher.
10 years ago
Simon Heinen
6decc2596d
squashed #3729
...
Update android+AsyncServiceHelper.java
Update android+AsyncServiceHelper.java
changed tabs in last commit to spaces
Update android+AsyncServiceHelper.java
small formatting fixes
10 years ago