#include "CUDA/CudaImage.H"
#include "CUDA/cudadefs.h"
#include "Image/ShapeOps.H"
Go to the source code of this file.
Functions | |
CudaImage< float > | cudaDecXY (const CudaImage< float > &src, const int xfactor=2, const int yfactor_raw=-1) |
CudaImage< float > | cudaDecX (const CudaImage< float > &src, const int xfactor=2) |
CudaImage< float > | cudaDecY (const CudaImage< float > &src, const int yfactor=2) |
CudaImage< float > | cudaDownSize (const CudaImage< float > &src, const Dims &dims, const int filterWidth=9) |
CudaImage< float > | cudaDownSize (const CudaImage< float > &src, const int new_w, const int new_h, const int filterWidth=9) |
CudaImage< float > | cudaDownSizeClean (const CudaImage< float > &src, const Dims &new_dims, const int filterWidth=9) |
CudaImage< float > | cudaQuickLocalAvg (const CudaImage< float > &array, const int scale) |
CudaImage< float > | cudaQuickLocalAvg2x2 (const CudaImage< float > &array) |
CudaImage< float > | cudaQuickLocalMax (const CudaImage< float > &array, const int scale) |
template<class T > | |
CudaImage< T > | cudaRescaleBilinear (const CudaImage< T > &src, const Dims &dims) |
CudaImage< float > | cudaRescaleBilinear (const CudaImage< float > &src, const int new_w, const int new_h) |
CudaImage< PixRGB< float > > | cudaRescaleBilinear (const CudaImage< PixRGB< float > > &src, const int new_w, const int new_h) |
template<class T > | |
CudaImage< T > | cudaRescale (const CudaImage< T > &src, const Dims &newdims, RescaleType ftype=RESCALE_SIMPLE_BILINEAR) |
template<class T > | |
CudaImage< T > | cudaRescale (const CudaImage< T > &src, const int width, const int height, RescaleType ftype=RESCALE_SIMPLE_BILINEAR) |
C++ wrapper for CUDA Shape operations
Definition in file CudaShapeOps.H.