Francisco Facioni
31bd84de12
LSD: Removes unused code
8 years ago
Alexander Alekhin
cd6e7ac46e
Merge pull request #7252 from terfendail:transparent_sobel_fix
8 years ago
Alexander Alekhin
86f01c254d
Merge pull request #7307 from Jeroonk:fix_detect_python_majorversion
8 years ago
k-shinotsuka
0d85d2cc0a
improve RGB2HLS_b()
8 years ago
k-shinotsuka
4f22f48e63
improve HSV2RGB_b()
8 years ago
Jeroen Kromwijk
401537ebab
Detect the correct Python major version
8 years ago
k-shinotsuka
0fc187d7a3
improve HLS2RGB_b()
8 years ago
k-shinotsuka
1f8aa4f7d3
improve Lab2RGB_b()
8 years ago
k-shinotsuka
37be868679
improve RGB2Luv_b()
8 years ago
k-shinotsuka
4540260df9
improve Luv2RGB_b()
8 years ago
Vadim Pisarevsky
dc3d0cbc22
Merge pull request #7266 from alalek:pr7159
8 years ago
Alexander Alekhin
d5c202e46b
Merge pull request #7294 from tomoaki0705:fixBuildCudaAarch64
8 years ago
Alexander Alekhin
fb912e1ba7
Merge pull request #7295 from lupustr3:pvlasov/vs11_compat_fix
8 years ago
Vitaly Tuzov
48f132f35f
Fix Sobel evaluation for image ROI without isolated border.
8 years ago
Alexander Alekhin
26ecf2f374
Merge pull request #7285 from danil-tolkachev:none-comparison
8 years ago
Alexander Alekhin
a35bec1e0a
Merge pull request #7293 from Algomorph:master
8 years ago
Pavel Vlasov
0a9470bf09
Compatibility fix for Visual Studio 2012;
8 years ago
Gregory Kramida
0d626c8fef
v4l2 backend: Y16 default behavior fixed & FOURCC setting added
...
1) Cameras started with Y16 (V4L2_PIX_FMT_Y16) format via v4l2 backend will now exhibit default camera behavior, i.e. convert the 16-bit image to BGR as with all other formats. 16-bit 1-channel output will now only be produced for Y16 if CV_CAP_PROP_CONVERT_RGB is set to "false" using VideoCap::set method.
2) v4l2 videoio backend now supports setting CV_CAP_PROP_FOURCC explicitly (icvSetPropertyCAM_V4L function in cap_v4l.cpp), allowing users to manually set the codec on cameras that support multiple codecs.
8 years ago
Tomoaki Teshima
0db4b7cebb
fix build error on CUDA + Aarch64
...
* __fp16 doesn't exist on nvcc, but it slips through ifdef guard
8 years ago
Alexander Alekhin
aac745c8e4
Merge pull request #7291 from lr-morales:openni/7290-openni1_2_conflict
8 years ago
Luis Roberto Morales Iglesias
60b33046a7
[Issue #7290 ] Fixes OpenNI and OpenNI2 linking conflict
8 years ago
stbnps
a4a6ee34bf
Added support for V4L2_PIX_FMT_Y16
8 years ago
Alexander Alekhin
32df09c275
Merge pull request #7287 from seanm:master
8 years ago
Sean McBride
5357e28a2f
Removed some extra semi-colons
...
Fixes clang -Wextra-semi warnings.
8 years ago
danil-tolkachev
50d02b9f84
supress numpy future warning with `None` comparison
8 years ago
Alexander Alekhin
05b15943d6
Merge pull request #7188 from valeriyvan:andfutheriosfixes
8 years ago
Alexander Alekhin
d1492eefca
Merge pull request #7181 from valeriyvan:ioscleanup
8 years ago
matze
975d2e4294
Enable built in counting trailing zeros function for Intel compiler and clang.
8 years ago
Vadim Pisarevsky
ab3814f9b9
Merge pull request #7191 from anirudt:docs_moments
8 years ago
Vadim Pisarevsky
6a1e549ffe
Merge pull request #7217 from thiell:master
8 years ago
Vadim Pisarevsky
0d3b6465bd
Merge pull request #7112 from StevenPuttemans:improve_cascadeclassifier_training_tutorial
8 years ago
Vadim Pisarevsky
52535d3ef1
Merge pull request #7278 from alalek:opencv_version
8 years ago
Vadim Pisarevsky
a554941737
Merge pull request #7280 from sovrasov:calib_app_license
8 years ago
Alexander Alekhin
adbf2dc9f1
Merge pull request #7193 from valeriyvan:osxcleanup
8 years ago
Valeriy Van
f1dcf71dd7
Merge pull request #7178 from valeriyvan:iosfixes
...
* Changes delegate property from assign to weak
In modern Objective-C delegate should be weak. In very rare conditions you might want delegate be strong.
Assign for delegate is sign of legacy code.
This change prevents crash when you forget nil delegate in dealloc and makes rush with nilling delegate unnecessary.
This change shouldn't break any existing code.
* Adds implementation for setters and getters for weak delegate properties for non ARC Obj-C files
For whatever reason compiler can't synthesize these.
And yes, it's time to convert all Objective-C stuff to ARC.
8 years ago
Vladislav Sovrasov
ec40b85e75
Add license to interactive-calibration app sources
8 years ago
Alexander Alekhin
2935fcea62
apps: add opencv_version command line tool
8 years ago
matze
a865876c0f
Added CV_UNUSED to not used variable when build without SSE2 support.
8 years ago
anirudt
2879eada25
docs: truncated commit msg
8 years ago
Vadim Pisarevsky
473dba1189
Merge pull request #7208 from terfendail:openvx_hal_impl
8 years ago
Vadim Pisarevsky
ca9183d567
Merge pull request #7034 from K-Shinotsuka:issue12
8 years ago
StevenPuttemans
a65f2b4bd3
huge overhaul/update of cascade classifier training
8 years ago
matze
aaa255465e
Renamed haveSSE2 in haveSIMD. Conditional compilation for function header removed
8 years ago
Vadim Pisarevsky
b632f95f8d
Merge pull request #7133 from sovrasov:interactive_calibration_update
8 years ago
Vadim Pisarevsky
a9ab869800
seriously improved performance of blur function, especially 3x3 and 5x5 cases ( #7262 )
...
* seriously improved performance of blur function, especially 3x3 and 5x5 cases
* trying to fix warnings and test failures
* replaced #if 0 with #if IPP_DISABLE_BLOCK
8 years ago
Maksim Shabunin
4e918fb987
Merge pull request #7165 from PkLab:doc_videoio
8 years ago
PkLab.net
be65701908
Large update of videoio doc and samples following mshabunin comments
8 years ago
Alexander Alekhin
f85e33f4af
videoio: refactor AVFoundation code integration
8 years ago
Vadim Pisarevsky
c1024b112e
Merge pull request #7259 from alalek:issue_7232
8 years ago
Vadim Pisarevsky
6dd609a709
Merge pull request #7260 from alalek:ffmpeg_windows_binaries
8 years ago