#include <mexutils.h>#include <vl/mathop.h>#include <vl/dsift.h>#include <math.h>#include <assert.h>
Go to the source code of this file.
Enumerations | |
| enum | { opt_step = 0, opt_bounds, opt_size, opt_fast, opt_norm, opt_window_size, opt_float_descriptors, opt_geometry, opt_verbose } |
Functions | |
| void | mexFunction (int nout, mxArray *out[], int nin, const mxArray *in[]) |
| MEX entry point. | |
Variables | |
| vlmxOption | options [] |
| anonymous enum |
| opt_step | |
| opt_bounds | |
| opt_size | |
| opt_fast | |
| opt_norm | |
| opt_window_size | |
| opt_float_descriptors | |
| opt_geometry | |
| opt_verbose |
Definition at line 23 of file vl_dsift.c.
| void mexFunction | ( | int nout | , |
| mxArray * | out[], | ||
| int | nin, | ||
| const mxArray * | in[] | ||
| ) |
MEX entry point.
------------------------------------------------------------------
Definition at line 54 of file vl_dsift.c.
{
{"Bounds", 1, opt_bounds },
{"Step", 1, opt_step },
{"Size", 1, opt_size },
{"Fast", 0, opt_fast },
{"Norm", 0, opt_norm },
{"WindowSize", 1, opt_window_size },
{"FloatDescriptors", 0, opt_float_descriptors},
{"Geometry", 1, opt_geometry },
{"Verbose", 0, opt_verbose },
{0, 0, 0 }
}
Definition at line 36 of file vl_dsift.c.