Igor Wodiany
e2499e5b2f
Move vector_size_t and vector_vector_Mat
...
These two typdefs are not compiled when BUILD_opencv_dnn is set to
false, however there are other modules that uses these typedef so
it may cause build errors. Moving typedef to the python module
ensures they are always defined.
7 years ago
Sayan Sinha
60bcb16ca8
Fix typo in mat.hpp
7 years ago
Tomoaki Teshima
2a781bb616
remove raw SSE2/NEON implementation from mathfuncs.cpp
...
* replace the implementation by universal intrinsic
* make sure no degradation happens on ARM platform
7 years ago
James Perkins
4eb9f175a4
test_stereomatching.cpp: validate min disparity affect on valid ROI
7 years ago
Nickola
b2b56b6896
Fix Issue #9797 minEnclosingCircle from three points
...
and add test for only 3 pts
7 years ago
klchang
d4ef5bc16a
fix the possible bug for key mapping in Linux GTK library
7 years ago
Vladislav Vinogradov
26fe8bd4f2
made flann dependency for features2d optional
...
it will allow to build features2d even if flann module is not available
7 years ago
Alexander Alekhin
4857cae6ed
dnn: don't use "experimental_dnn_v1" namespace directly
7 years ago
Alexander Alekhin
b0c6bd0a5b
build: resolve naming issue
7 years ago
Li Peng
937b8e4277
dnn(ocl4dnn): support log softmax in ocl4dnn
...
Signed-off-by: Li Peng <peng.li@intel.com>
7 years ago
Alexander Alekhin
88225eb65e
ocl: fix world compilation on Windows
7 years ago
Suleyman TURKMEN
29c186a022
Update min_enclosing_triangle.cpp
7 years ago
Suleyman TURKMEN
baf9e32af3
Update imgproc.hpp
7 years ago
Maksim Shabunin
83655ba9be
MediaSDK video backend: Windows support
7 years ago
Vladislav Sovrasov
47e1133e71
dnn: add crop flag to blobFromImage
7 years ago
Vladislav Sovrasov
f7175f5050
dnn: fix additional text boxes handling after the latest adaptations for TF
7 years ago
Vladislav Sovrasov
050916fd6b
dnn: modify priorBox layer
7 years ago
berak
ada753a54c
fix c++17 namsespace issues
7 years ago
Geoff McIver
b2d8e8c508
This statement was keeping HAAR cascades from leveraging opencl on nvidia devices. "localSize" on the featureEvaluator remains Size(0, 0) which sets the bool "use_ocl" to false. Adding this allows NVidia GPUs to leverage opencl HAAR Cascades
7 years ago
Suleyman TURKMEN
b2673a19cf
Updates min_enclosing_triangle.cpp
7 years ago
Dmitry Kurtaev
905a9dada2
Removed LPNormalize layer.
7 years ago
Alexander Alekhin
3935e13603
dnn(halide): don't compile Halide via parallel_for_()
...
To avoid problem with reduced stack size of inner threads.
7 years ago
tz70s
6c1247b38c
fix#9570: implement mat ptr for generic types
...
The original template based mat ptr for indexing is not implemented,
add the similar implementation as uchar type, but cast to
user-defined type from the uchar pointer.
7 years ago
Alexander Alekhin
af4d6f34d8
OpenCV version '-cvsdk'
7 years ago
Alexander Alekhin
bd6fb497bc
OpenCV version++
...
OpenCV 3.3.1
7 years ago
Alexander Alekhin
949ec486c5
experimental version++
7 years ago
James Perkins
2cfe29276e
fix StereoBM disparity map right margin truncation when minDisparities > 0
7 years ago
LaurentBerger
752f232335
It's done
7 years ago
Alexander Alekhin
3ae7515955
qt: fix non-world builds
7 years ago
AlexeyAB
ecc34dc521
Added DNN Darknet Yolo v2 for object detection
7 years ago
Dmitry Kurtaev
eabf728682
PReLU layer from Caffe
7 years ago
Alexander Alekhin
3010cc5971
js: skip 'utils' headers
7 years ago
Maksim Shabunin
ef332dc550
Fixed and suppressed warnings produced by GCC 6.3.0
7 years ago
Maksim Shabunin
5a22d81fe5
Fixed warnings produced by static analyzer
7 years ago
Wu Zhiwen
dbe9ee0924
ocl: simplify ocl::Timer
...
Use clFinish to gurantee commands completed, instead of waiting for events.
Signed-off-by: Wu Zhiwen <zhiwen.wu@intel.com>
7 years ago
Sayed Adel
4b968d1fe2
Added universal intrinsic for VSX
7 years ago
Sayed Adel
d077778074
Added support for VSX
7 years ago
Alexander Alekhin
e615fafe2d
build: fix MSVS2010
7 years ago
Dmitry Kurtaev
e4aa39f9e5
Text TensorFlow graphs parsing. MobileNet-SSD for 90 classes.
7 years ago
Alexander Alekhin
6be25727ec
ocl: refactor program compilation
7 years ago
Alexander Alekhin
04b4495493
ocl: define ProgramSource before program
...
no changes in code
7 years ago
Igor Wodiany
ffb9554787
Extract code from scalarToRawData
...
The same code was repeated several time for different data types, so
it was extracted as a templated function to improve maintability and
make a code more clear.
7 years ago
Igor Wodiany
b638aa74d7
Fix a memory leak in the Mat copying constructor
...
Exception may be rasied inside the body of a copying constructor after
refcount has been increased, and beacause in the case of the exception
destrcutor is never called what causes memory leak. This commit adds a
workaround that calls the release() function before the exception is
thrown outside the contructor.
7 years ago
mevatron
fdc4344acb
Small fix for using Qt 5.x with opencv_world
7 years ago
Dmitry Kurtaev
b9f94c9315
Nearest neighbor resize layer
7 years ago
Dmitry Kurtaev
e268606e26
Grayscale colorization model ( https://github.com/richzhang/colorization ) test.
7 years ago
Yaron Inger
0d979a741b
videoio: remove AssetsLibrary dependency.
...
The entire AssetsLibrary framework is deprecated since iOS 8.0. The code
used in the camera example code can use UIKit to save videos to the
camera instead, which allows to avoid linking with PhotoKit instead to
prevent increasing the iOS deployment target.
7 years ago
Dmitry Kurtaev
ad8bbaf008
Multidimensional eltwise layer.
...
Fixed fully-connected layer axis.
7 years ago
Peter J. Stieber
5669ee815b
Replace private.cuda.hpp with conditional include of cuda_fp16.h.
7 years ago
Dmitry Kurtaev
2a21c10837
Fix TensorFlow split layer
7 years ago