Suleyman TURKMEN
ee6aacee9c
Update window_gtk.cpp
...
Update miniflann.cpp
Update test_stereomatching.cpp
8 years ago
Alexander Alekhin
f7a273cfb3
core(test): regression test for 9507
8 years ago
berak
da208216ee
features2d: fix BFMatcher.radiusMatch with HAMMING2
8 years ago
Maksim Shabunin
235b00b6ee
Fixed MediaSDK tests and build warnings
8 years ago
saskatchewancatch
33ba7867f6
Don't truncate label for tracknbar name (Qt)
...
Setting truncate option for QString leftJustified method to false fixes 10 character truncation issue noted in issue 9489
8 years ago
Alexander Alekhin
7067c1597d
flann: std::vector<size_t> can't be converted into cv::Mat properly
...
size_t is not supported cv::Mat type
8 years ago
Boris Fomitchev
dde04d5d3e
Addressing CUDA9 shfl deprecation
8 years ago
Alexander Alekhin
e3b12bdb59
imgproc(ocl): eliminate div by zero in Canny
8 years ago
Maarten de Vries
3571e8f263
Restrict std::initializer_list constructors to arithmetic types.
8 years ago
Vladislav Sovrasov
91e56abcf1
imgproc: disable buggy inplace processing in convexHull
8 years ago
Alexander Alekhin
8f05126619
imgcodecs: fix regression 9376
8 years ago
Tomoaki Teshima
6531fd142c
fix build error on Jetson TK1
...
* guard correctly in header file
* guard correctly in cmake file
8 years ago
Pavel Rojtberg
01acb08c7b
videoio: ximea - allow opening capture by serial number
8 years ago
Adi Shavit
183081ccd3
Changes window position only if BOTH top corners are outside ALL monitors.
8 years ago
Alexander Alekhin
897b071b97
videoio(v4l): move MJPEG/JPEG to the end of probe list
8 years ago
Zoltán Mizsei
6258ff36bc
Haiku build fix
8 years ago
Vladislav Sovrasov
e0ff5106d3
calib3d: fix warning from gcc7
8 years ago
Adi Shavit
8a094a5f54
Merge pull request #9445 from adishavit:master
...
* Adds cv::resizeWindow() overload taking a single cv::Size argument.
* Replaces copied documentaion with Doxygen @overload command.
8 years ago
Vladislav Sovrasov
ef7833a271
calib3d: add CALIB_FIX_TANGENT_DIST flag to stereoCalibrate
8 years ago
Wu Zhiwen
da3da84a20
ocl: Add a function to unload a run-time cached program
...
This function is the counterpart of "Context::getProg".
With this function, users have chance to unload a program
from global run-time cached programs, and save resource.
8 years ago
Alexander Alekhin
c515e878ab
build: eliminate Win32 warnings
8 years ago
Boris Fomitchev
c48807c383
Merge pull request #9418 from borisfom:cuda9
...
CUDA9 build fixed, added detection (#9418 )
* CUDA9 build fixed, added detection
* Replacing deprecated __shfl_xxx with __shfl_sync, fixing bogus CUDA9 warnings
8 years ago
Alexander Alekhin
8285924cf3
ts: eliminate build warning '-Wself-assign'
8 years ago
Ricardo Ribalda Delgado
6fc5697950
ocl: Fix OpenCL library detection in Linux
...
OpenCL runtime does not require OpenCL development file (libOpenCL.so),
just the "run" library (so.1).
This patch searches for the run library (so.1) if the dev library (.so)
is not found.
Web search shows that this error has been present since at least 2015
http://answers.opencv.org/question/80532/haveopencl-return-false/
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
8 years ago
Alexander Alekhin
aacae20657
imgcodesc: fix code problems with integer overflow / address arithmetic / UB
8 years ago
Dmitry Kurtaev
7123d9c376
Added 1ms delay to let system decorate Qt windows
8 years ago
Pavel Vlasov
a57718e1ac
ICV2017u3 package update;
...
- Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled.
- Performance regressions fixes for IPP code paths;
- cv::boxFilter integration improvement;
- cv::filter2D integration improvement;
8 years ago
Aleksandr Rybnikov
8b1146deb2
Added function to get timings for layers
8 years ago
KUANG Fangjun
97ec91ad67
fix cv::CommandLineParser.
...
It should handle bool value not only of "true" but also of "TRUE" and "True".
8 years ago
Alexander Alekhin
ea6fe71a50
python: eliminate -Wundef warning about NPY_INTERNAL_BUILD
...
numpy 1.13.0+
8 years ago
Dmitry Kurtaev
54f0616a13
Deconvolution layer from TensorFlow
8 years ago
Steven Puttemans
9b173e2db1
fix description of setTrackbarMin
8 years ago
KUANG Fangjun
336996152a
Improve the documentation.
8 years ago
Emanuele Ruffaldi
588ca5d126
videoio for mingw32: added STRSAFE_NO_DEPRECATE and realpath
8 years ago
Alexander Alekhin
8c84763ed3
vtk: eliminate 'override' build warning
8 years ago
Alexander Alekhin
87a98e4562
cmake: CMP0026 NEW
8 years ago
Alexander Alekhin
b6949c5088
cmake: CMP0022 NEW
8 years ago
Camille Barneaud
d5e64f4eb2
Avoid HOGDescriptor with sigma = 0
...
Solve #9307 .
8 years ago
Vladislav Sovrasov
2b8f888ea4
videoio: remove throw lists since they are deprecated in cxx11 (and gcc7 produces a warning)
8 years ago
Nishant Arora
98db804541
Merge pull request #9210 from whizzzkid/fixing-cuda
...
Fixing explicitly call download method for cuda::GpuMat object
8 years ago
Alexander Alekhin
71e1889825
core: fix memcpy with zero size
8 years ago
Dmitry Kurtaev
4e28c00e7b
Fix Halide buffer behavior in case of OpenCL device memory allocation
8 years ago
Jiri Horner
a5b5684670
Merge pull request #9330 from hrnr:akaze_ocl
...
[GSOC] Enable OCL for AKAZE (#9330 )
* revert e0489cb
- reenable OCL for AKAZE
* deal with conversion internally in AKAZE
* pass InputArray directly to AKAZE to allow distiguishing input Mat/UMat. deal with conversion there
* ensure that keypoints orientations are always computed. prevents misuse of internal AKAZE class.
* covert internal AKAZE functions to use InputArray/OutputArray
* make internal functions private in AKAZE
* split OCL and CPU paths in AKAZE
* create 2 separate pyramids, 1 for OCL and 1 for CPU
* template functions that use temporaries to always store them as correct type (UMat/Mat)
* remove variable used only in OCL path
causes unused variable warning
* update AKAZE documentation
* run ocl version only when ocl is enabled
* add tests for OCL path in AKAZE
* relax condition for keypoints angle
8 years ago
Alexander Alekhin
78a310630f
imgproc(test): add checks for remove() call
8 years ago
Alexander Alekhin
999f41fb4f
imgcodecs: refactoring, improve code quality
8 years ago
Alexander Alekhin
0d854db361
build: workaround GCC 7.1.1 compilation issue with sanitize flags
...
Version: gcc (GCC) 7.1.1 20170622 (Red Hat 7.1.1-3)
Flags: -fsanitize=address,undefined
8 years ago
berak
e7b9cfa8f2
imgproc:fix winSize in createHanningWindow()
8 years ago
Martin Seyferth
e5f129424c
brisk add detection threshold for custom sampling pattern
8 years ago
Rostislav Vasilikhin
66b0651607
Merge pull request #9329 from savuor:softfloat_sincos
...
SoftFloat: added sin, cos and docs (#9329 )
* softfloat: comparison operators made inline, min() max() eps() isSubnormal() added
* softfloat: get/set sign/exp
* softfloat: get/set frac
* softfloat: tests rewritten with new tools
* softfloat: added pi(), sin(), cos()
* softfloat: more comments
* softfloat: updated sincos arg reduction
* softfloat: initial tests for sincos added
* softfloat: test works, code cleanup is pending
* softfloat: sincos argreduce rewritten
* softfloat: sincos refactored and simplified
* softfloat sincos: epsilons calibrated
* softfloat: junk code removed from tests
* softfloat: docs added
* inline comparisons undone; warning fixed
8 years ago
Alexander Alekhin
9e239c7a1e
highgui: refactor GTK backend
...
- eliminate legacy C code, used fields
- fix mutex synchronization issues
- set trackbar min/max without unnecessary truncation; allow negative values
8 years ago