Vladislav Vinogradov
1f72873c55
fix cv::gpu::resize function
...
add missing stream parameter to call_resize_linear_glob
11 years ago
Maks Naumov
a01659825c
remove unused variable in loadFromXML()
11 years ago
Vladislav Vinogradov
f8d922ad3e
disable gpu::GeneralizedHough compilation on gcc 4.7
11 years ago
Firat Kalaycilar
0a16d93e1d
Fixed an issue with weight assignment causing the resulting GMM weights to be unsorted in the CUDA and OCL versions of BackgroundSubtractorMOG2
11 years ago
Ilya Lavrenov
099ea91823
typos
11 years ago
Vladislav Vinogradov
7fd21d217a
fix bug #3562 :
...
add missing __syncthreads to edgesHysteresisLocalKernel
11 years ago
Ilya Lavrenov
da9bdf9c15
fixes typo and unused variables
11 years ago
Vladislav Vinogradov
150e522bee
fix bug #3552 :
...
replace std::swap with own code
11 years ago
Vladislav Vinogradov
5dbdadb769
fixed several bugs in CUDA Canny implementation:
...
* out of border access in edgesHysteresisLocalKernel
* incorrect usage of atomicAdd
11 years ago
Vladislav Vinogradov
5d099df578
Revert "disable CUDA generalized Hough Transform"
...
This reverts commit 33d42b740c
.
11 years ago
Vladislav Vinogradov
e630be3890
disable NPP for GpuMat methods and for copyMakeBorder
11 years ago
Vladislav Vinogradov
33d42b740c
disable CUDA generalized Hough Transform
11 years ago
Vladislav Vinogradov
d847387694
split CUDA Hough sources
11 years ago
Vladislav Vinogradov
adb2040980
added additional check in cv::gpu::demosaicing that source is not empty
11 years ago
Roman Donchenko
2c38be079e
Enabled CV_Assert and such to print the function name with Visual C++.
...
Also, I made a separate macro for the current function name, which
helps simplify a lot of code that uses it.
11 years ago
Roman Donchenko
36b5180aa1
Another FFmpeg fix from master.
...
From commit dd74a851
, to be exact. Now cap_ffmpeg.cpp should actually
build if HAVE_FFMPEG is true.
Also modified some gpu sources in a similar manner.
11 years ago
Vladislav Vinogradov
c439702f0c
added missing gpu::matchTemplate implementation for non-CUDA build
12 years ago
Roman Donchenko
7d62fdc62c
GPU resize: removed a few parameter names to avoid unused parameter warnings.
12 years ago
Vladislav Vinogradov
bff0fad6c3
gpu TVL1 Optical Flow optimization:
...
do not calculate sum of error in every round of iteration;
instead the error will be summed every 2nd times or more,
if the previous sum of error is too far away from threshold.
12 years ago
Vladislav Vinogradov
21c4753fed
used global memory access for up-scaling
12 years ago
Vladislav Vinogradov
d1f6a23abf
improved texture usage:
...
* use explicit extrapolation only for sub-matrixes
* use built-in interpolation for INTER_NEAREST mode
12 years ago
Vladislav Vinogradov
241cc417f9
added custom implementation for nearest and linear interpolation
12 years ago
Vladislav Vinogradov
3b05acf936
reorganize code for further modifiction
12 years ago
Vladislav Vinogradov
f826bd8bce
removed NPP implementation
12 years ago
Roman Donchenko
e9a28f66ee
Normalized file endings.
12 years ago
Vladislav Vinogradov
de214950c4
minor gpu TVL1 optical flow optimization:
...
don't calc diff term if it is not used for epsilon criterion
12 years ago
Vladislav Vinogradov
cb2985c526
fixed gpu bitwize operation:
...
incorrect types for template instantiation
12 years ago
Vladislav Vinogradov
55cb26551f
use NPP version for Fermi
12 years ago
Vladislav Vinogradov
a28cb99e88
optimized version of histEven for CV_8UC1
12 years ago
Vladislav Vinogradov
ebe7ff991f
fixed compilation without CUBLAS and CUFFT
12 years ago
Roman Donchenko
ac39bfb4cc
Remove HAVE_CVCONFIG_H - it's always defined.
12 years ago
Vladislav Vinogradov
1492b20472
fix gpu warnings with signed/unsigned char
12 years ago
Vladislav Vinogradov
31a5f7ef3c
fixed bug #3069 (infinite loop in GPU LBP Cascade detectMultiScale)
12 years ago
Vladislav Vinogradov
918381875a
rewrite gpu/device/vec_math.hpp file
...
old version isn't compiled with CUDA 5.5
new version doesn't depend on functional.hpp
12 years ago
Vladislav Vinogradov
bcf8bdb401
fixed constructors for functional objects (added __host__ modifier)
12 years ago
Vladislav Vinogradov
58e472754a
fixed norm diff function (it uses pre-allocated buffer now)
12 years ago
Vladislav Vinogradov
0521e8908c
fixed NPP error constants usage
12 years ago
Roman Donchenko
29b13ec1de
Replaced most of the usages of parallel_for with that of parallel_for_.
...
This should allow many algorithms to take advantage of more parallelization
technologies.
12 years ago
Vladislav Vinogradov
8e10cd8946
fixed gpu module compilation under windows
12 years ago
Vladislav Vinogradov
924b0ef786
fixed bug in TVL1 optical flow:
...
initial optical flow was not cleaned during the second call
12 years ago
Vladislav Vinogradov
4d23e2c8c9
GPU implementation of CLAHE
12 years ago
Vladislav Vinogradov
f0b19d4659
updated license header in whole gpu module
12 years ago
Vladislav Vinogradov
33ff3d6016
added simd_functions.hpp to device layer
12 years ago
Vladislav Vinogradov
99c49648fa
fixed gpu::LUT on multi device system
12 years ago
Vladislav Vinogradov
fd7bf0b766
moved SURF_GPU and VIBE to gpunonfree module
12 years ago
Vladislav Vinogradov
4a237af814
implemented Malvar, He, and Cutler Bayer Demosaicing on gpu
12 years ago
Vladislav Vinogradov
4ddf634c30
gpu : implement Bayer* -> Gray color conversion
12 years ago
Vladislav Vinogradov
f533f0dca9
fixed gpu sanity tests
12 years ago
Vladislav Vinogradov
4f7cfbc26e
fixed gpu bitwise operations with scalars
12 years ago
Vladislav Vinogradov
a138e12a26
refactored gpu perf tests and fixed sanity tests
12 years ago