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
Alexander Smorkalov
e49e75da06
OpenCV patch verison++.
10 years ago
Vladislav Vinogradov
1d40946959
Bug #4315 : fix CUDA bitwise operations with mask
...
(cherry picked from commit d87c30dc84
)
10 years ago
lujia
17cc5e2c40
bugfix_for_hog_detectMultiScale_with_weights
...
(cherry picked from commit 7ce116695d
)
10 years ago
Vladislav Vinogradov
4b14400976
disable several heavy performance tests
...
(cherry picked from commit cbdddb473c
)
10 years ago
Vladislav Vinogradov
4704a254f7
disable Video_PyrLKOpticalFlowDense performance test
...
sanity fails on Maxwell and CUDA 7.0 due to unknow reason
(cherry picked from commit b4c2891ef3
)
10 years ago
Vladislav Vinogradov
7708e9882e
use border extrapolation for central pixel in pyrDown
...
in case if image has odd dimension
(cherry picked from commit 1325213303
)
10 years ago
Vladislav Vinogradov
fe1bd0cc2f
fix racecheck warning in scanRows kernel
...
(cherry picked from commit fb15bdfb21
)
10 years ago
Vladislav Vinogradov
a752f25944
increase epsilon for solvePnPRansac function
...
(cherry picked from commit 9d2d173485
)
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
Eric Sommerlade
41b920344d
added support for uncompressed parameters to tiff image format as described here: expertland.net/question/b6o3n6p9a72341db823b48nl98m91dx8n1/detail.html
...
Conflicts:
modules/imgcodecs/src/grfmt_tiff.cpp
10 years ago
Kevin Hughes
ac3ec0d96d
squashed #823
...
removed separate example for reading image sequences and modified starter_video.cpp to better explain the functionality of VideoCapture. I also added a bit more explanation in the documentation of the VideoCapture interface
Conflicts:
modules/highgui/doc/reading_and_writing_images_and_video.rst
samples/cpp/starter_video.cpp
starter_video.cpp changed CV WINDOW KEEPRATIO to just WINDOW KEEPTATIO to fix build error
starter_video.cpp hid local functions
10 years ago
Andrey Pavlenko
40b762bceb
adding test for `polylines()` call with empty Point-s vector and fix for crash in this case
10 years ago
Ilya Lavrenov
89e3c508d8
fixed tests for aarch64
10 years ago
Vladislav Vinogradov
cbdddb473c
disable several heavy performance tests
10 years ago
Vladislav Vinogradov
b4c2891ef3
disable Video_PyrLKOpticalFlowDense performance test
...
sanity fails on Maxwell and CUDA 7.0 due to unknow reason
10 years ago
Vladislav Vinogradov
1325213303
use border extrapolation for central pixel in pyrDown
...
in case if image has odd dimension
10 years ago
Vladislav Vinogradov
fb15bdfb21
fix racecheck warning in scanRows kernel
10 years ago
Vladislav Vinogradov
9d2d173485
increase epsilon for solvePnPRansac function
10 years ago
Ilya Lavrenov
ceec0eb33a
rmeoved unused functions
10 years ago
Ilya Lavrenov
02e29fc99c
suppress -Wclobbered warning
10 years ago
lujia
7ce116695d
bugfix_for_hog_detectMultiScale_with_weights
10 years ago
Vladislav Vinogradov
a984da911b
increase epsilons for some sanity tests
...
(cherry picked from commit 6a6619ec1e
)
10 years ago
Vladislav Vinogradov
df55be3c3d
fix BruteForceMatcher resource distribution
...
added launch bounds attributes for all CUDA kernels
(cherry picked from commit d22516872c
)
10 years ago
Vladislav Vinogradov
55339de684
make NVIDIA tests verbose by default
...
(cherry picked from commit 17608f7ade
)
10 years ago
Vladislav Vinogradov
f08dd510fa
fixed a bug in scanRows CUDA kernel (part of nppStIntegral)
...
uninitialized value
(cherry picked from commit 81ebe28c24
)
10 years ago
Vladislav Vinogradov
d308ed3712
fix GPU WARP border mode in CUDA 7.0 and Maxwell architecture
...
(cherry picked from commit 27302c367c
)
10 years ago
Vladislav Vinogradov
6d0f8aa893
fix tests for gpu HOG
...
initialize HOG after CUDA device switch
(cherry picked from commit c849492dfa
)
10 years ago