Keita Kita
1621043bd2
Add documentation about detail of image type
...
connectedComponents and connectedComponentsWithStats in
imgproc accept 8-bit single channel image only for input.
10 years ago
Nikolay Polyarniy
8026824563
ts module: includes moved out from cvtest namespace
10 years ago
Pavel Vlasov
2b27f7dbb3
Fixed warnings for IPP9+ build;
10 years ago
GabrieleDalmazzone
5a72be08fd
Race condition bug-fix in hog.cu
...
See https://github.com/Itseez/opencv/issues/5721
COMMENTS:
* The second __syncthreads() is necessary, I am sure of that.
* The code works without the first __syncthreads() too, but I have however added it for symmetry. Anyway it doesn't affect time performances, I have checked it with some profiling with nvvp
10 years ago
Ariel Bernal
5c8683139f
Fix for #5710 . OpenCL HOG Object detect assigns the wrong SIMD size.
...
In oder to guarantee SIMDness between the two compilation steps we choose the
highest SIMD size that is optimized in the kernel for the first step.
10 years ago
comdiv
81c746c2a8
32bit BITFIELDS compresion codec support #5707 Fixed
...
wsfixed
10 years ago
Pavel Vlasov
7375383d26
Canny IPP Sobel getBufferSize wrong func fix;
10 years ago
hoangviet1985
e679d97100
remove redundant code
10 years ago
hoangviet1985
3e96b724c2
squash
10 years ago
Pavel Vlasov
9acf93b7c6
IPP Sobel getBufferSize wrong func fix;
10 years ago
Maksim Shabunin
c3cf1be344
fixup! run.py: issues with forced configuration fixed
10 years ago
Rok Mandeljc
7452f9a56e
cudastereo: document lack of fractional bits in 16-bit signed format for StereoBeliefPropagation
10 years ago
Rok Mandeljc
1c804124d1
cudastereo: updated documentation for reprojectImage3D and drawColorDisp
...
Updated the list of supported input formats, added note about 16-bit
signed format (no fractional bits).
10 years ago
Rok Mandeljc
980d84e4a2
calib3d: improve documentation of reprojectImageTo3D
...
Make a note about 16-bit signed format - the function assumes that
values have no fractional bits (so 16-bit disparity from StereoBM
and StereoSGBM cannot be directly used!)
10 years ago
Rok Mandeljc
bf5e930468
cudastereo: drawColorDisp: enabled CV_32S and CV_32F disparity formats
10 years ago
Rok Mandeljc
9f82ac18d4
cudastereo: reprojectImageTo3D: enabled CV_32S and CV_32F disparity formats
...
This is to achieve parity with the CPU equivalent.
10 years ago
Suleyman TURKMEN
99a286ef24
Update imgcodecs.hpp
10 years ago
Maksim Shabunin
e8bf4417ef
New variant of iOS framework building, fixed some warnings for XCode 7.1.1 and cmake 3.3.2
10 years ago
Maksim Shabunin
7df392bfd8
run.py: issues with forced configuration fixed
10 years ago
Philipp Hasper
4d3915f69a
Fixed mjpeg frame size attribution
10 years ago
Maksim Shabunin
97878645bc
Fix run.py test detection issues for debug VS configurations
10 years ago
Pavel Rojtberg
c209f795b5
support for NORM_L2SQR in norm(Matx<..>)
10 years ago
Bert
d3b0bda011
Update system.cpp
...
FreeBSD compilation fix
10 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
10 years ago
berak
0baf0bdc24
AKAZE: check channels instead of type in detectAndCompute
...
add same CV_32F and CV_16U support for KAZE
10 years ago
Pavel Rojtberg
9233472bdd
use cpp functions in CvLevMarq::step for better readability
10 years ago
jiakai
933dfed4b8
check offset in ExifReader::getString
10 years ago
Marian Zajko
1eb9ef6bbf
Fixed downsampling parameter enumerator backward compatibility.
10 years ago
Marian Zajko
286055b0d8
Removed trailing whitespace.
10 years ago
Marian Zajko
2cebe5a3b0
Fixed parameter enumrators list order to retain binary compatibility.
10 years ago
Marian Zajko
2998248dd3
Removed whitespaces reported by buildbot.
10 years ago
Marian Zajko
352b121202
Fixed whitespace issue
...
Removed tabulators from enumerators and ximea adapter source as reported
by precommit docs test.
10 years ago
Pavel Rojtberg
742fb559f7
use cpp functions in cvCalibrateCamera2 to make it more readable
10 years ago
Pavel Rojtberg
955f489621
make CV_CAP_PROP_FORMAT consider the current channel count
10 years ago
Pavel Rojtberg
05f52b697f
replace uyvy_to_rgb24 by tested and conformant cvtColor
10 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.
10 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.
10 years ago
Pavel Rojtberg
f50817120e
v4l: remove needless CvCaptureCAM_V4L_CPP wrapper
...
possible source of memory leaks and unneeded complexity
10 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
10 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.
10 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
10 years ago
Maksim Shabunin
7392ce0a81
Added some documentation for MSER
10 years ago
jiakai
80df9ddedb
check for exifSize
10 years ago
jiakai
1260060d7d
check boundary in ExifReader
10 years ago
Pavel Vlasov
4d7f9e06e8
Fix for copy with mask 32s and 8u;
10 years ago
edgarriba
f50858dd24
set GA_ReadOnly flag again since test error
10 years ago
Chris Kitching
0f8a266787
Make Mat assertion failures more helpful
...
Instead of chaining a bunch of sanity checks together with "&&", let's just have several asserts. That way, when an assert fails, you don't get a monsterous "<huge evil expression>
failed" error, but only the bit you care about, making your life rather a lot easier.
10 years ago
edgarriba
decdae515b
set GA_Update flag in order remove ERROR 8: band 1: Attempt to write to read only dataset inGDALRasterBand::Fill()
10 years ago
edgarriba
9ff14bc411
add support for float32 and float 64
10 years ago
grundman
f609ddba05
Fix incorrect FPS value returned by cap.get(CV_CAP_PROP_FPS)
...
Current implementation returns NaN for some configs of FFMPEG, call default get_fps() instead (as also used by PROP_POS_MSEC)
10 years ago