Alexander Alekhin
a0cff0be94
imgproc(cvtColor): slightly improve error messages
...
Do not try to process empty inputs.
6 years ago
Alexander Alekhin
509de3fa2c
Merge pull request #12178 from alalek:ipp_cvtColor_12176
6 years ago
Alexander Alekhin
b00758babe
imgproc(cvtColor): temporary disable IPP for 8U GRAY2BGR mode
...
Details 12176
6 years ago
Alexander Alekhin
4eb2966559
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
6 years ago
Alexander Alekhin
9f2edc1135
Merge pull request #12173 from gdemarcq:Decolor_corrections
6 years ago
Alexander Alekhin
a56b221559
core: cv::Range() ostream write operator
...
remove from DNN module headers
6 years ago
yom
fb2b26c419
photo: Decolor corrections
...
* Keep image aspect ratio in resize called in grad_system and
weak_order
* Bug correction in loop inside Decolor::gradvector
6 years ago
Alexander Alekhin
377e51df83
Merge pull request #12169 from berak:photo_decolor
6 years ago
Alexander Alekhin
7453a6938a
core(test): extra tests/fixes for merge/split ( #12171 )
...
* core(test): merge hang test
* core(merge/split): fix intrin optimization
6 years ago
Maksim Shabunin
39f5e57321
Merge pull request #12159 from zarelaky:master
6 years ago
berak
f49f6d52b4
photo: avoid resizing a const Mat in decolor()
6 years ago
zarelaky
715f23127c
Update cap_gstreamer.cpp
...
fixed call open(int id) failed
6 years ago
Maksim Shabunin
f0f652f9e9
Merge pull request #12161 from alalek:cache_dump_neighbor_directories_for_cleanup
6 years ago
Maksim Shabunin
731aa963bd
Merge pull request #12166 from berak:fix_mjpeg_decoder
6 years ago
berak
7e353a1ec5
videoio: check iterator in mjpeg_encoder.cpp
6 years ago
Hamdi Sahloul
293facbae7
Support Python binding for CUDA functionalities
6 years ago
Alexander Alekhin
4fe900c399
Merge pull request #12162 from alalek:fix_intrin_12146
6 years ago
Alexander Alekhin
5c3880d302
core(intrin): avoid symbols duplication from SIMD128/256 cases
...
All vx_call() must be wrapped into own simd128/simd256/simd512 namespace
```
namespace CV__SIMD_NAMESPACE {
... vx_call declaration is here ...
}
```
6 years ago
Alexander Alekhin
9eaa583bfb
core: dump neighbour cache directories (from old OpenCV versions)
...
- use '3.4.x' cache name for current maintenance series (there are no serious changes between releases)
- message is shown only once during creation of new cache directory
- use OPENCV_CACHE_SHOW_CLEANUP_MESSAGE=0 to hide this warning
6 years ago
Vadim Pisarevsky
6500700d6f
Merge pull request #12157 from allnes:detect_qr_code
6 years ago
Alexander Nesterov
f95a411ba3
Update binarization
6 years ago
Vadim Pisarevsky
7c8ab271fc
Merge pull request #12125 from dkurt:dnn_mobilenet_ppn
6 years ago
Vadim Pisarevsky
70b893333d
Merge pull request #12130 from dkurt:dnn_ie_mvn
6 years ago
Dmitry Kurtaev
449696f1e5
Enable reshape-as-shape layer from TensorFlow
6 years ago
Vadim Pisarevsky
e0c93bcf6c
Merge pull request #12082 from dkurt:dnn_ie_faster_rcnn
6 years ago
Vadim Pisarevsky
23022f3ffb
Merge pull request #12121 from maver1:amatyuko/sse2_convert_with_saturation_fix
6 years ago
Alexander Alekhin
ac4a6aad15
Merge pull request #12050 from alalek:dnn_ocl_avoid_memory_access_violation
6 years ago
Alexander Alekhin
7d7767ba42
Merge pull request #12134 from mshabunin:add-yuv420-v4l
6 years ago
Alexander Alekhin
183cfd3a2e
Merge pull request #12097 from xsacha:master
6 years ago
Alexander Alekhin
9cb3e9abf0
Merge pull request #12135 from tompollok:3.4
...
imgproc: update cornerSubPix documentation
6 years ago
CYTing1998
053259fd92
Merge pull request #12093 from CYTing1998:update_issue
...
* I have updated the requirements of reporting issues inside ISSUE_TEMPLATE.md
6 years ago
Alexander Alekhin
b4cea8d6d1
Merge pull request #12120 from alalek:core_test_intrin_dispatched
6 years ago
Alexander Alekhin
8f57fc93ec
Merge pull request #12123 from allnes:detect_qr_code
6 years ago
Sacha
9ff4475695
Support WITH_CUDA with clang compiler.
6 years ago
Alexander Alekhin
1c73e66edf
Merge pull request #12131 from alalek:issue_12083
6 years ago
tompollok
061149cbbd
imgproc: update cornerSubPix documentation
6 years ago
Maksim Shabunin
a2daf0c83c
videoio: added YUV420 format (UV order) support to v4l capture
6 years ago
Alexander Alekhin
2dbb5871e0
Merge pull request #12129 from pierrejeambrun:stitching_detailed_sift
6 years ago
Dmitry Kurtaev
be08730cd6
MVN layer using Intel's Inference Engine backend
6 years ago
Alexander Alekhin
3082ea82f9
core(merge): fix SIMD loop head processing
6 years ago
Pierre Jeambrun
5131619a1a
feat(stitching): Add Sift support for the FeaturesFinder
6 years ago
Alexander Alekhin
b056ce33aa
Merge pull request #12124 from mshabunin:download-improve
6 years ago
Maksim Shabunin
df9efbbd1f
Install data for samples to correct directories, do not download face_detector models in cmake
6 years ago
Alexander Alekhin
f2e1710dd5
core(test): regression test for 12121
6 years ago
Alexander Nesterov
05830874d7
Refactor code
6 years ago
Dmitry Kurtaev
4fb086d6c3
MobileNet-SSD v1 from TensorFlow with shared convolution weights
6 years ago
amatyuko
3ea2586a5a
Fix for SSE2 intrinsics problem in the part of saturation arithmetic processing during 32s->16u packed conversion -
...
for some big negative values less than -INT_MAX+32767 the sign of the numbers is lost due to overflow that leads to
incorrect saturation to MAX value, instead of zero.
The issue is not reproduced with CV_ENABLED_INTRINSICS=OFF
6 years ago
Maksim Shabunin
2df0345985
cmake: add download helper scripts
6 years ago
CJ Smith
da41ac9e60
Merge pull request #12106 from CJSmith-0141:warpPerspective_typofix
...
* Fixes typo in function name hal::warpPerspective.
* Fixes remaining typos in word Perspective (was Perspectve).
6 years ago
Alexander Alekhin
47e3e89e30
Merge pull request #12116 from luzpaz:misc-typos
6 years ago