#include <mexutils.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <assert.h>
#include <vl/ikmeans.h>
#include <vl/generic.h>
Go to the source code of this file.
Enumerations | |
enum | { opt_max_niters, opt_method, opt_verbose } |
Functions | |
void | mexFunction (int nout, mxArray *out[], int nin, const mxArray *in[]) |
Variables | |
vlmxOption | options [] |
anonymous enum |
Definition at line 26 of file vl_ikmeans.c.
void mexFunction | ( | int nout | , |
mxArray * | out[], | ||
int | nin, | ||
const mxArray * | in[] | ||
) |
Definition at line 41 of file vl_ikmeans.c.
{ {"MaxIters", 1, opt_max_niters }, {"Method", 1, opt_method }, {"Verbose", 0, opt_verbose }, {0, 0, 0 } }
Definition at line 32 of file vl_ikmeans.c.