#include "CUDA/CudaImage.H"
#include "Util/Assert.H"
#include "CUDA/cudadefs.h"
#include "CudaColorOps.H"
#include "Image/PixelsTypes.H"
#include <map>
#include <list>
#include <cmath>
#include "Image/Dims.H"
#include "CUDA/cutil.h"
#include <cuda_runtime_api.h>
#include "Util/log.H"
#include <stdlib.h>
#include <stdio.h>
Go to the source code of this file.
Functions | |
void | cudaGetRGBY (const CudaImage< PixRGB< float > > &src, CudaImage< float > &rg, CudaImage< float > &by, const float thresh, const float min_range, const float max_range) |
CudaImage< PixRGB< float > > | cudaToRGB (const CudaImage< float > &src) |
void | cudaGetComponents (const CudaImage< PixRGB< float > > &src, CudaImage< float > &red, CudaImage< float > &green, CudaImage< float > &blue) |
CudaImage< float > | cudaLuminance (const CudaImage< PixRGB< float > > &src) |
CudaImage< float > | cudaLuminanceNTSC (const CudaImage< PixRGB< float > > &src) |
C++ wrapper for CUDA Color operations
Definition in file CudaColorOps.C.