Vladimir Bystricky
e7227d3e4b
Fix problems with border extrapolation in kernel. Add Isolated/Nonisolated borders.
11 years ago
Alexander Alekhin
bdbd3eb2bf
ocl: process termination hung workaround
11 years ago
Ilya Lavrenov
8fa8b36b42
added cv::Laplacian, cv::Sobel, cv::Scharr, cv::GaussianBlur to T-API
11 years ago
Vadim Pisarevsky
302a5adcc2
converted Haar cascades to the new format; now they are handled with C++ code.
11 years ago
Ilya Lavrenov
5566d31468
more strict checks outside ROI
11 years ago
Peter Andreas Entschev
c289c8a700
Fixing some indentation issues on FREAK source file.
11 years ago
Ilya Lavrenov
c9e6ed7a29
added cv::blendLinear
11 years ago
Ilya Lavrenov
93c6fe66ce
added cv::bilateralFilter to T-API
11 years ago
Peter Andreas Entschev
6f3163f62d
DescriptorExtractor: added defaultNorm() to return default norm type.
...
Added the defaultNorm() method to the DescriptorExtractor class. This method returns the default norm type for each descriptor type. The tests and C/C++ samples were updated to get the norm type directly from the DescriptorExtractor inherited classes.
This was reported in feature report #2182 (http://code.opencv.org/issues/2182 ). It will make it possible to get the norm type usually applied matching method for each descriptor, instead of passing it manually.
11 years ago
Vladimir Bystricky
8d8f5665f1
Fix build errors on Linux system
11 years ago
Vladimir Bystricky
179a43ef63
Fix build errors on Linux system
11 years ago
Vladimir Bystricky
29ba7730ed
Add ocl version of filter2D to the module img_proc
11 years ago
Anatoly Baksheev
262f70f3ab
cv::format declaration in default headers
11 years ago
Ilya Lavrenov
c16c9a2e8e
added cv::split to T-API
11 years ago
Ilya Lavrenov
b6c33bf86b
added cv::norm to T-API
11 years ago
Ilya Lavrenov
cd3f7fbf05
added cv::merge to T-API
11 years ago
Anatoly Baksheev
4c66b87698
fixed -Wshadow and other warnings, added rvec test
11 years ago
Anatoly Baksheev
f62ffa2aea
compilation
11 years ago
Anatoly Baksheev
f9ca6cfd22
fixed ocv_module_disable()
11 years ago
Anatoly Baksheev
546c084fe6
fixed shadow error and added ocv_disable_module
11 years ago
Anatoly Baksheev
0e88733b13
updating Viz cmake (switched to WITH_VTK option)
11 years ago
Anatoly Baksheev
3830a0b5b2
fixed bug with deletion from std::map
11 years ago
Anatoly Baksheev
a6ab9be5a6
removed VizAccessor from docs
11 years ago
Anatoly Baksheev
fb62a66b69
removed unused code
11 years ago
Anatoly Baksheev
b88fdc73d6
VizAccessor is now private and renamed to VizStorage
11 years ago
Anatoly Baksheev
d970d58308
added Viz::tutorial2 test
11 years ago
Anatoly Baksheev
ace71cef3f
Added Affine3<T>::rvec()
11 years ago
Anatoly Baksheev
9f1f5aed53
compilation
11 years ago
Anatoly Baksheev
a9c7aa92d9
removed CV_EXPORTS from cv::Afiine
11 years ago
Anatoly Baksheev
177f7eb339
fixed warning
11 years ago
Anatoly Baksheev
0895616576
switched from unnecessarily 'dobule' to 'float' in some places (commonly for widget scale)
11 years ago
Anatoly Baksheev
b560cc35d9
removed Ptr typedef from Viz3d. It is deprecated since Viz3d itseez is a shared pointer
11 years ago
GregoryMorse
68d8f6410f
Update system.cpp
...
Cleaned up to use the preferred namespace code. This can be further simplified by using the HString/HStringReference classes from wrl\wrappers\corewrappers.h
11 years ago
Vadim Pisarevsky
fdf1996e2e
added old=>new cascade conversion function
11 years ago
Ilya Lavrenov
73aa43d2ca
fixed warnings
11 years ago
Alexander Smorkalov
9f04222a75
OpenCV Manager version++.
11 years ago
Andrey Pavlenko
f2cf9dd8bf
updating version to 2.4.7.2
11 years ago
Elena Gvozdeva
f5a01f15a5
Fixed test for ocl_flip
11 years ago
Peter Andreas Entschev
def17f2baa
Removing ocl::oclMat::ptr() method.
...
The method ocl::oclMat::ptr() is being removed because it returns a pointer to a row of oclMat::data. The data attribute is a cl_mem structure and cannot be iterated outside an OpenCL kernel.
11 years ago
Ilya Lavrenov
926cab2baa
fixed warnings
11 years ago
Vladimir Bystricky
44126e350a
Change while(true) to for(;;) for fix compiler warning.
11 years ago
Vladimir Bystricky
591b1a7e70
Another fix for disable "conditional expression is constant"
11 years ago
Vladimir Bystricky
3013b469fe
Add check for depths of destination and source image. Fix warning C4127.
11 years ago
Ilya Lavrenov
3eaa8f149b
added cv::intergal to T-API
11 years ago
Peter Andreas Entschev
3bc952ed34
ocl::BruteForceMatcher fix wrong use of oclMat::ptr().
...
The oclMat::ptr() method was mistakenly used in ocl::BruteForceMatcher to pass a pointer to a oclMat object. The ptr() method returns a uchar pointer to the cl_mem data structure and this method will be removed.
11 years ago
Elena Gvozdeva
b930028727
Added cv::flip using Transparent API
11 years ago
Alexander Alekhin
3dcddad88a
ocl: added workaround into Haar kernels
11 years ago
Vladimir Bystricky
af6134b4b6
Fix issue in boxFilter with destination depth not equal to source depth.
11 years ago
Vladimir Bystricky
968a898a1b
Add ocl version of boxFilter to the module img_proc
11 years ago
Zhigang Gong
6ce03b0484
Fixed some implicitly type conversions between vector and scalar data type.
...
There are some mixed implicitly/explicitly type conversion between
scalar and vector. Although the spec allows those conversion, I prefer
to make them consistent and use explicitly all the cases.
Signed-off-by: Zhigang Gong <zhigang.gong@intel.com>
11 years ago