#include <af/compilers.h>
#include <stdbool.h>
#include <stdlib.h>
#include <af/version.h>
Go to the source code of this file.
Namespaces | |
namespace | af |
Macros | |
#define | AFAPI __attribute__((visibility("default"))) |
#define | SIZE_T_FRMT_SPECIFIER "%zu" |
#define | AF_DEPRECATED(msg) __attribute__((deprecated)) |
#define | AF_MAX_DIMS 4 |
enum af_backend |
Definition at line 413 of file defines.h.
enum af_binary_op |
Enumerator | |
---|---|
AF_BINARY_ADD | |
AF_BINARY_MUL | |
AF_BINARY_MIN | |
AF_BINARY_MAX |
Definition at line 430 of file defines.h.
enum af_border_type |
Definition at line 266 of file defines.h.
enum af_canny_threshold |
Enumerator | |
---|---|
AF_CANNY_THRESHOLD_MANUAL | User has to define canny thresholds manually. |
AF_CANNY_THRESHOLD_AUTO_OTSU | Determine canny algorithm thresholds using Otsu algorithm. |
Definition at line 483 of file defines.h.
enum af_colormap |
Definition at line 454 of file defines.h.
enum af_connectivity |
Definition at line 288 of file defines.h.
enum af_conv_domain |
Enumerator | |
---|---|
AF_CONV_AUTO | ArrayFire automatically picks the right convolution algorithm. |
AF_CONV_SPATIAL | Perform convolution in spatial domain. |
AF_CONV_FREQ | Perform convolution in frequency domain. |
Definition at line 313 of file defines.h.
Enumerator | |
---|---|
AF_CONV_GRADIENT_DEFAULT | |
AF_CONV_GRADIENT_FILTER | |
AF_CONV_GRADIENT_DATA | |
AF_CONV_GRADIENT_BIAS |
Definition at line 542 of file defines.h.
enum af_conv_mode |
Enumerator | |
---|---|
AF_CONV_DEFAULT | Output of the convolution is the same size as input. |
AF_CONV_EXPAND | Output of the convolution is signal_len + filter_len - 1. |
Definition at line 300 of file defines.h.
enum af_cspace_t |
enum af_diffusion_eq |
Enumerator | |
---|---|
AF_DIFFUSION_GRAD | Gradient diffusion equation. |
AF_DIFFUSION_MCDE | Modified curvature diffusion equation. |
AF_DIFFUSION_DEFAULT | Default option is same as AF_DIFFUSION_GRAD. |
Definition at line 505 of file defines.h.
enum af_dtype |
enum af_err |
Definition at line 71 of file defines.h.
enum af_flux_function |
Enumerator | |
---|---|
AF_FLUX_QUADRATIC | Quadratic flux function. |
AF_FLUX_EXPONENTIAL | Exponential flux function. |
AF_FLUX_DEFAULT | Default flux function is exponential. |
Definition at line 499 of file defines.h.
enum af_homography_type |
Enumerator | |
---|---|
AF_HOMOGRAPHY_RANSAC | Computes homography using RANSAC. |
AF_HOMOGRAPHY_LMEDS | Computes homography using Least Median of Squares. |
Definition at line 405 of file defines.h.
enum af_image_format |
Definition at line 377 of file defines.h.
enum af_interp_type |
Definition at line 242 of file defines.h.
Enumerator | |
---|---|
AF_INVERSE_DECONV_TIKHONOV | Tikhonov Inverse deconvolution. |
AF_INVERSE_DECONV_DEFAULT | Default is Tikhonov deconvolution. |
Definition at line 534 of file defines.h.
Enumerator | |
---|---|
AF_ITERATIVE_DECONV_LANDWEBER | Landweber Deconvolution. |
AF_ITERATIVE_DECONV_RICHARDSONLUCY | Richardson-Lucy Deconvolution. |
AF_ITERATIVE_DECONV_DEFAULT | Default is Landweber deconvolution. |
Definition at line 528 of file defines.h.
enum af_marker_type |
Enumerator | |
---|---|
AF_MARKER_NONE | |
AF_MARKER_POINT | |
AF_MARKER_CIRCLE | |
AF_MARKER_SQUARE | |
AF_MARKER_TRIANGLE | |
AF_MARKER_CROSS | |
AF_MARKER_PLUS | |
AF_MARKER_STAR |
Definition at line 469 of file defines.h.
enum af_mat_prop |
Definition at line 348 of file defines.h.
enum af_match_type |
enum af_moment_type |
Enumerator | |
---|---|
AF_MOMENT_M00 | |
AF_MOMENT_M01 | |
AF_MOMENT_M10 | |
AF_MOMENT_M11 | |
AF_MOMENT_FIRST_ORDER |
Definition at line 395 of file defines.h.
enum af_norm_type |
Definition at line 363 of file defines.h.
Definition at line 439 of file defines.h.
enum af_someenum_t |
enum af_source |
enum af_storage |
Enumerator | |
---|---|
AF_STORAGE_DENSE | Storage type is dense. |
AF_STORAGE_CSR | Storage type is CSR. |
AF_STORAGE_CSC | Storage type is CSC. |
AF_STORAGE_COO | Storage type is COO. |
Definition at line 490 of file defines.h.
enum af_topk_function |
Definition at line 511 of file defines.h.
enum af_var_bias |
Enumerator | |
---|---|
AF_VARIANCE_DEFAULT | Default (Population) variance. |
AF_VARIANCE_SAMPLE | Sample variance. |
AF_VARIANCE_POPULATION | Population variance. |
Definition at line 522 of file defines.h.
enum af_ycc_std |
Enumerator | |
---|---|
AF_YCC_601 | ITU-R BT.601 (formerly CCIR 601) standard. |
AF_YCC_709 | ITU-R BT.709 standard. |
AF_YCC_2020 | ITU-R BT.2020 standard. |