147AFAPI void deviceprop(
char* d_name,
char* d_platform,
char *d_toolkit,
char* d_compute);
A multi dimensional data container.
#define AF_DEPRECATED(msg)
AFAPI int devicecount()
Gets the number of devices.
AFAPI int getDevice()
Gets the current device ID.
AFAPI int deviceget()
Gets the current device ID.
AFAPI void deviceprop(char *d_name, char *d_platform, char *d_toolkit, char *d_compute)
Gets the information about device and platform as strings
AFAPI void deviceInfo(char *d_name, char *d_platform, char *d_toolkit, char *d_compute)
Gets the information about device and platform as strings
AFAPI void deviceset(const int device)
Sets the current device.
AFAPI void setDevice(const int device)
Sets the current device.
AFAPI array colorspace(const array &image, const CSpace to, const CSpace from)
C++ Interface wrapper for colorspace conversion.
AFAPI array colorSpace(const array &image, const CSpace to, const CSpace from)
C++ Interface wrapper for colorspace conversion.
AFAPI array gaussianKernel(const int rows, const int cols, const double sig_r=0, const double sig_c=0)
C++ Interface for generating gausian kernels.
AFAPI array gaussiankernel(const int rows, const int cols, const double sig_r=0, const double sig_c=0)
Creates a Gaussian Kernel
AFAPI array histequal(const array &in, const array &hist)
C++ Interface for histogram equalization.
AFAPI array histEqual(const array &in, const array &hist)
C++ Interface for histogram equalization.
AFAPI array loadImage(const char *filename, const bool is_color=false)
C++ Interface for loading an image.
AFAPI array loadimage(const char *filename, const bool is_color=false)
C++ Interface for loading an image.
AFAPI void saveimage(const char *filename, const array &in)
C++ Interface for saving an image.
AFAPI void saveImage(const char *filename, const array &in)
C++ Interface for saving an image.
T alltrue(const array &in)
C++ Interface to check if all values along the first non-singleton dimension are true.
array allTrue(const array &in, const int dim=-1)
C++ Interface to check if all values along a given dimension are true.
T anytrue(const array &in)
C++ Interface to check if all values along the first non-singleton dimension are true.
array anyTrue(const array &in, const int dim=-1)
C++ Interface to check if any values along a given dimension are true.
array product(const array &in, const int dim=-1)
C++ Interface to multiply array elements over a given dimension.
AFAPI array mul(const array &in, const int dim=-1)
C++ Interface to multiply array elements over a given dimension.
array setIntersect(const array &first, const array &second, const bool is_unique=false)
C++ Interface to evaluate the intersection of two arrays.
AFAPI array setintersect(const array &first, const array &second, const bool is_unique=false)
C++ Interface to evaluate the intersection of two arrays.
AFAPI array setunion(const array &first, const array &second, const bool is_unique=false)
C++ Interface to evaluate the union of two arrays.
array setUnion(const array &first, const array &second, const bool is_unique=false)
C++ Interface to evaluate the union of two arrays.
array setUnique(const array &in, const bool is_sorted=false)
C++ Interface to return the unique values in an array.
AFAPI array setunique(const array &in, const bool is_sorted=false)
C++ Interface to return the unique values in an array.
AFAPI array convolve(const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO)
C++ Interface for convolution any(one through three) dimensional signals.
AFAPI array filter(const array &image, const array &kernel)
Image Filtering.