Vladislav Vinogradov
734212a402
refactor CUDA CascadeClassifier
10 years ago
Vladislav Vinogradov
8257dc3c1e
refactor CUDA HOG algorithm:
...
use abstract interface with hidden implementation
10 years ago
Vladislav Vinogradov
f126f371b2
move CUDA object detection algorithms to separate module
10 years ago
Vladislav Vinogradov
8a178da1a4
refactor CUDA BFMatcher algorithm:
...
use new abstract interface and hidden implementation
10 years ago
Vladislav Vinogradov
f960a5707d
refactor CUDA ORB feature detector/extractor algorithm:
...
use new abstract interface and hidden implementation
10 years ago
Vladislav Vinogradov
14ef62ed66
refactor CUDA FAST feature detector algorithm:
...
use new FastFeatureDetector abstract interface and hidden implementation
10 years ago
Basheer Subei
fd1cae0dcc
typo fix in instructions of fitline.py sample
10 years ago
Vladislav Vinogradov
220d937d9a
removed buffered versions of histogram functions
...
used BufferPool mechanism instead
10 years ago
Chris Mayo
34f0da6010
Act on INSTALL_PYTHON_EXAMPLES
10 years ago
Vladislav Vinogradov
cd0e95de16
refactor cudaarithm reductions:
...
* remove overloads with explicit buffer, now BufferPool is used
* added async versions for all reduce functions
10 years ago
Maksim Shabunin
b4050c775e
Updated sample files documentation inclusions
10 years ago
Alexander Alekhin
63fc313d02
samples: fix python contants
10 years ago
Vladislav Vinogradov
53862687d5
rename CudaMem -> HostMem to better reflect its purpose
10 years ago
Dikay900
44f629f99c
fix gpu sample performance test cpu part
10 years ago
Dikay900
8c919ed248
samples: gpu: fix include of TickMeter
10 years ago
Vladislav Vinogradov
1189606cd8
fix gpu performance sample compilation
10 years ago
Alexander Alekhin
2e05f1e3f8
openni_capture sample: enable OpenNI2 if available
...
Sample works with OpenNI2 with minimal code changes (CAP_OPENNI -> CAP_OPENNI2)
10 years ago
Brian Park
e4fa217a62
remove the unnecessary header file
10 years ago
Brian Park
9e3a2cbab2
check input paramter by checking the image size
10 years ago
Brian Park
f83a76cdeb
add input paramter checking that verifies the existance of the input files to stero_match example
10 years ago
Chuanbo Weng
2b52bb092a
Update hog.cpp
...
Update according to vbystricky's comments
10 years ago
Chuanbo Weng
7452eef6e9
Correctly enable OpenCL mode in tapi's hog example.
...
For current OpenCV-CL architecture, if the data buffer
allocated in UMat are cpu buffer(not ocl buffer) under
cpu mode, and then pass this UMat to an OpenCL kernel
as an argument, the OpenCL path will fail and fallback
to cpu mode. Take HOGDescriptor::oclSvmDetector as an example:
ocl::setUseOpenCL(false);
//data allocated in hog.oclSvmDetector will be cpu buffer
hog.setSVMDetector(HOGDescriptor::getDaimlerPeopleDetector());
ocl::setUseOpenCL(true);
//We enabled OpenCL, but hog.oclSvmDetector are cpu buffer,
//so it will fail in the function ocl_classify_hists
//when reach to this line
//idx = k.set(idx, ocl::KernelArg::PtrReadOnly(detector));
hog.detectMultiScale(img, found, hit_threshold, win_stride,
Size(0, 0), scale, gr_threshold);
Similar problems heppen on img_aux and img. So we should re-define
or re-set these UMat when do mode switch (CPU -> OpenCL) in order
to make their data be allocated by ocl and then OpenCL path will
succeed.
Signed-off-by: Chuanbo Weng <chuanbo.weng@intel.com>
10 years ago
Vadim Pisarevsky
d2b9dc5530
quickly corrected the previous refactoring of features2d: moved from set(SOME_PROP, val) to setSomeProp(val)
10 years ago
Vadim Pisarevsky
1176d4ef84
fixed some more compile errors and test failures
10 years ago
Vadim Pisarevsky
d36b546df8
trying to fix strange compiler bug
10 years ago
Vadim Pisarevsky
06d4aa6060
now all the samples and opencv_contrib compile!
10 years ago
Vadim Pisarevsky
c422bdc3f8
fixed some more compile errors and test failures
10 years ago
Vadim Pisarevsky
48a860a335
trying to fix strange compiler bug
10 years ago
Vadim Pisarevsky
d017faa06c
now all the samples and opencv_contrib compile!
10 years ago
Adrien BAK
82a5ff8540
fix warnings in samples
10 years ago
Dmitriy Anisimov
4c08581e48
opencv_version
10 years ago
Dmitriy Anisimov
71348651eb
fixed display_image tutorial sample
10 years ago
Dmitriy Anisimov
55c799a474
fixed warnings in documents
10 years ago
Dmitriy Anisimov
ec03d6e6fc
removed cpp/tutorial_code/images/
10 years ago
Dmitriy Anisimov
1007c06d44
initial commit
10 years ago
Maksim Shabunin
5e3e438edb
Fix xfeatures2d dependencies
10 years ago
Juan Carlos Niebles
dc49e11527
removed setter methods, replaced by CV_PROP_RW macro
10 years ago
Juan Carlos Niebles
1162f0ed63
fixed whitespaces
10 years ago
Juan Carlos Niebles
f610c88103
extended python interface for KalmanFilter
10 years ago
Vadim Pisarevsky
aa4a80defc
the samples from the main repository should not depend on modules from opencv_contrib
10 years ago
Maximilien Cuony
9ac0b06ff1
Fix typo in error for extrinsic parameters
10 years ago
Pierrick Koch
aeda3d2d69
[samples/pyhton] fix common {LINE->CV}_AA
10 years ago
Maksim Shabunin
c42424f2db
Fixed android samples build
10 years ago
John Kua
fb0c0eaa7c
Fixed bad non-ASCII character in how_to_scan_images.cpp which causes a compile error
10 years ago
Rok Mandeljc
d9db950c0e
samples: gpu: performance: SURF is now part of opencv_xfeatures2d
10 years ago
Rok Mandeljc
db391fdfdd
samples: gpu: performance: BackgroundSubtractorMOG is now part of opencv_bgsegm module
10 years ago
Rok Mandeljc
fbf28bcc63
samples: gpu: performance: fix include path for opencv_xfeatures2d
...
As opencv_xfeatures2d is part of opencv-contrib and not opencv repository,
${OpenCV_SOURCE_DIR}/modules/modules/include is not a correct include
path - use ${opencv_xfeatures2d_SOURCE_DIR}/include instead
10 years ago
Rok Mandeljc
653bca8b74
samples: gpu: super_resolution: disable simple optical flow
...
The cv::superres::createOptFlow_Simple() function along with the
simple optical flow class implementation is currently commented out
in the superres module's code, so comment it out in the example as well.
10 years ago
Rok Mandeljc
f739990f4c
samples: gpu: performance: removed FGDStatModel performance comparison test
...
The FGD background subtraction model was part of opencv_legacy module;
as it is gone now, it makes little sense to benchmark the GPU version,
either, so the whole test is removed.
10 years ago
Rok Mandeljc
51311779b3
samples: gpu: performance: remove inclusion of opencv2/legacy.hpp header
...
The header is gone now, along with the opencv_legacy module.
10 years ago