replaced GPU -> CUDA

This commit is contained in:
Vladislav Vinogradov
2013-07-24 13:55:18 +04:00
parent 3c34b24f1f
commit fd88654b45
172 changed files with 2434 additions and 2436 deletions

View File

@@ -47,7 +47,7 @@
namespace cv { namespace cuda {
class CV_EXPORTS SURF_GPU
class CV_EXPORTS SURF_CUDA
{
public:
enum KeypointLayout
@@ -63,9 +63,9 @@ public:
};
//! the default constructor
SURF_GPU();
SURF_CUDA();
//! the full constructor taking all the necessary parameters
explicit SURF_GPU(double _hessianThreshold, int _nOctaves=4,
explicit SURF_CUDA(double _hessianThreshold, int _nOctaves=4,
int _nOctaveLayers=2, bool _extended=false, float _keypointsRatio=0.01f, bool _upright = false);
//! returns the descriptor size in float's (64 or 128)

View File

@@ -50,7 +50,7 @@ namespace cv
{
namespace ocl
{
//! Speeded up robust features, port from GPU module.
//! Speeded up robust features, port from CUDA module.
////////////////////////////////// SURF //////////////////////////////////////////
class CV_EXPORTS SURF_OCL