From 4321d083e1d533cbfa0a1a88599a52f7edd685d9 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Wed, 3 Oct 2018 01:12:44 +0200 Subject: [PATCH] Do not execute CUDA version of gausian correlation Use CPU version for now, because the CUDA version seems to have problems. --- src/kcf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kcf.cpp b/src/kcf.cpp index 19b5817..60db47b 100644 --- a/src/kcf.cpp +++ b/src/kcf.cpp @@ -693,7 +693,7 @@ void KCF_Tracker::GaussianCorrelation::operator()(ComplexMat &result, const Comp DEBUG_PRINTM(xyf_sum); kcf.fft.inverse(xyf_sum, ifft_res); DEBUG_PRINTM(ifft_res); -#ifdef CUFFT +#if 0 && defined(CUFFT) // FIXME cuda_gaussian_correlation(ifft_res.deviceMem(), k.deviceMem(), xf_sqr_norm.deviceMem(), auto_correlation ? xf_sqr_norm.deviceMem() : yf_sqr_norm.deviceMem(), sigma, -- 2.39.2