Ilya Lavrenov
0050df8750
GraphCut deprecated in 7.5 and removed in 8.0
9 years ago
Maksim Shabunin
97878645bc
Fix run.py test detection issues for debug VS configurations
9 years ago
Pavel Rojtberg
c209f795b5
support for NORM_L2SQR in norm(Matx<..>)
9 years ago
Bert
d3b0bda011
Update system.cpp
...
FreeBSD compilation fix
9 years ago
mbarann
b48b2d43b0
MSMF expects a bottom-up video frame, so the buffer pointer must point to the end of the data and the stride needs to be negative
9 years ago
berak
0baf0bdc24
AKAZE: check channels instead of type in detectAndCompute
...
add same CV_32F and CV_16U support for KAZE
9 years ago
Vladislav Vinogradov
39854ceda4
cuda::StreamAccessor::wrapStream and cuda::EventAccessor::wrapEvent
...
to import existed CUDA stream or CUDA event to OpenCV
9 years ago
Vladislav Vinogradov
8d3850ac02
add cv::gpu::StreamAccessor::wrapStream method
...
it allows to import existed CUDA stream to OpenCV
9 years ago
Pavel Rojtberg
9233472bdd
use cpp functions in CvLevMarq::step for better readability
9 years ago
Tian Zhi
f0434d60b0
fixed the type inconsistent with document.
...
Document say probs will have CV_64F type. But in effect, it has CV_32F type.
http://docs.opencv.org/3.0.0/d1/dfb/classcv_1_1ml_1_1EM.html#a2ea7da92a75bc7a7d665c241f547b9b9
9 years ago
Jan Starzynski
2799829bc9
fix potential buffer overflow as in 3.0
9 years ago
jiakai
933dfed4b8
check offset in ExifReader::getString
9 years ago
Vladislav Vinogradov
d5e6503fe5
fix signed/unsigned comparison warning in core/test/test_math.cpp
9 years ago
hoangviet1985
6441620f45
The right signs give the right results
9 years ago
Marian Zajko
1eb9ef6bbf
Fixed downsampling parameter enumerator backward compatibility.
9 years ago
Marian Zajko
286055b0d8
Removed trailing whitespace.
9 years ago
Marian Zajko
2cebe5a3b0
Fixed parameter enumrators list order to retain binary compatibility.
9 years ago
Marian Zajko
2998248dd3
Removed whitespaces reported by buildbot.
9 years ago
Marian Zajko
352b121202
Fixed whitespace issue
...
Removed tabulators from enumerators and ximea adapter source as reported
by precommit docs test.
9 years ago
Pavel Rojtberg
742fb559f7
use cpp functions in cvCalibrateCamera2 to make it more readable
9 years ago
Pavel Rojtberg
955f489621
make CV_CAP_PROP_FORMAT consider the current channel count
9 years ago
Pavel Rojtberg
05f52b697f
replace uyvy_to_rgb24 by tested and conformant cvtColor
9 years ago
Pavel Rojtberg
ad68b79630
replace yuv420p_to_rgb24 by tested and conformant cvtColor
...
Conversion was not ITU 601 conformant. Also add YVU420 format to allowed
zero copy access.
9 years ago
Pavel Rojtberg
8527d895bb
replace rgb24_to_rgb24 by tested cvtColor
...
internally using ipp this conversion is now roughly 2x faster.
also add RGB/ BGR formats to allowed zero copy access.
9 years ago
Pavel Rojtberg
f50817120e
v4l: remove needless CvCaptureCAM_V4L_CPP wrapper
...
possible source of memory leaks and unneeded complexity
9 years ago
Pavel Rojtberg
93d6e800b6
v4l: Fixed memory leaks and inconsistent status return values
...
by updating to c++ coding conventions
- const correctness
- use bool as return value
- use explicit initialization instead of CLEAR macro/ memset
- use cv namespace
9 years ago
Pavel Rojtberg
a581ddd896
remove support of Video4Linux1 API
...
the last kernel that allowed compiling this code was 2.6.37 which was
released almost 5 Years ago. So probably it does not get much testing
any more. Furthermore even back then one was better off using the V4L2
API.
The only change touching currently used code is the removal of the
global V4L2_SUPPORT variable.
9 years ago
berak
28974e7290
remove usage of obsolete _dataAsRows flag
9 years ago
Maksim Shabunin
ffb9e877e9
Restore ts/gpu_perf.hpp, trying to compile with VS 2015
9 years ago
Viet Dinh
57829d81ea
mac compile error
9 years ago
Viet Dinh
a1532582a6
optimize code
9 years ago
Viet Dinh
68bcff26fb
fix solveCubic
...
The original solution did not handle correctly when delta = 0,
resulting as nan errors. I also wrote a test case to test solving
equation x^3 = 0 after fixing.
9 years ago
Marian Zajko
691fb1ffae
XIMEA adapter update
...
- replaced m3api/m3apiX64 binaries with latest xiapi32/xiapi64 to
support latest camera models
- added new parameter definitions to videoio_c.h and
SetProperty/GetProperty calls
- added acquisition resetting for specific parmateters in SetProperty
call
- added new error return value evaluators
9 years ago
Maksim Shabunin
7392ce0a81
Added some documentation for MSER
9 years ago
jiakai
80df9ddedb
check for exifSize
9 years ago
jiakai
1260060d7d
check boundary in ExifReader
9 years ago
Viet Dinh
433bc81b30
std::cbrt could not be found
9 years ago
Viet Dinh
c8bf176558
casting warning
9 years ago
Viet Dinh
cfd5caf29d
deal with type casting issues
9 years ago
Viet Dinh
f461d0cb7a
fix compile errors
...
some functions were not found in namespace std
9 years ago
Viet Dinh
09b0193186
even more correct
...
calculates cube root of complex number to give more correct results.
9 years ago
Lorena García
252feb4774
Hit and Miss morphological op
9 years ago
Viet Dinh
537a978dcf
update test_math.cpp
9 years ago
Abe Friesen
9c6ff4d955
- LogisticRegressionImpl::predict() was changed to return the predicted value and to only write to the OutputArray results if specified (no longer segfaults).
...
- Refactored batch and mini_batch training to use a common gradient computation function (removed duplicate code).
- Altered the cost computation so that NAN is not computed unnecessarily.
- Greatly simplified (and sped up) the code that appends a column of 1s to the data.
- Minor code cleanup.
Removed unused variables.
Added cast to float to remove warning
9 years ago
Abe Friesen
d367e159c1
Added cast to float to remove warning
9 years ago
Abe Friesen
db78fcd11a
Removed unused variables.
9 years ago
Abe Friesen
dc1b01e002
- LogisticRegressionImpl::predict() was changed to return the predicted value and to only write to the OutputArray results if specified (no longer segfaults).
...
- Refactored batch and mini_batch training to use a common gradient computation function (removed duplicate code).
- Altered the cost computation so that NAN is not computed unnecessarily.
- Greatly simplified (and sped up) the code that appends a column of 1s to the data.
- Minor code cleanup.
9 years ago
Pavel Vlasov
4d7f9e06e8
Fix for copy with mask 32s and 8u;
9 years ago
Viet Dinh
b6e8a47fca
fix whitespace errors
9 years ago
Viet Dinh
ed0065266e
update fixing bug #5599
9 years ago