Maximally Stable Extremal Regions - MEX implementation. More...
#include <mexutils.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <assert.h>
Go to the source code of this file.
Defines | |
#define | MAX(x, y) (((x)>(y))?(x):(y)) |
#define | MIN(x, y) (((x)<(y))?(x):(y)) |
Typedefs | |
typedef vl_uint64 | acc_t |
typedef int | idx_t |
typedef char unsigned | val_t |
Functions | |
void | adv (mwSize const *dims, int ndims, int *subs_pt) |
void | mexFunction (int nout, mxArray *out[], int nin, const mxArray *in[]) |
Maximally Stable Extremal Regions - MEX implementation.
Definition in file vl_erfill.c.
#define MAX | ( | x, | |
y | |||
) | (((x)>(y))?(x):(y)) |
Definition at line 27 of file vl_erfill.c.
#define MIN | ( | x, | |
y | |||
) | (((x)<(y))?(x):(y)) |
Definition at line 26 of file vl_erfill.c.
Definition at line 31 of file vl_erfill.c.
typedef int idx_t |
Definition at line 30 of file vl_erfill.c.
typedef char unsigned val_t |
Definition at line 29 of file vl_erfill.c.
Definition at line 35 of file vl_erfill.c.
void mexFunction | ( | int nout | , |
mxArray * | out[], | ||
int | nin, | ||
const mxArray * | in[] | ||
) |
----------------------------------------------------------------- Check the arguments --------------------------------------------------------------
Definition at line 46 of file vl_erfill.c.