MSER (Maximally Stable Extremal Regions (MSER))
More...
Detailed Description
Macro Definition Documentation
| #define VL_MSER_PIX_MAXVAL 256 |
| #define VL_MSER_VOID_NODE ((1ui64<<32) - 1) |
Typedef Documentation
This is a large integer type. It should be large enough to contain a number equal to the area (volume) of the image by the image width by the image height (for instance, if the image is a square of side 256, the maximum value is 256 x 256 x 256).
This is the data type of the image pixels. It has to be an integer.
Function Documentation
| void vl_mser_delete |
( |
VlMserFilt * |
f | ) |
|
The function releases the MSER filter f and all its resources.
- Parameters:
-
| f | MSER filter to be deleted. |
| void vl_mser_ell_fit |
( |
VlMserFilt * |
f | ) |
|
- Parameters:
-
- Returns:
- value of
delta.
| float const * vl_mser_get_ell |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- ellipsoids.
| vl_uint vl_mser_get_ell_dof |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- number of degrees of freedom.
| vl_uint vl_mser_get_ell_num |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- number of ellipsoids
| double vl_mser_get_max_area |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- maximum region area.
| double vl_mser_get_max_variation |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- maximum region variation.
| double vl_mser_get_min_area |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- minimum region area.
| double vl_mser_get_min_diversity |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- value of
minimum diversity.
| vl_uint const * vl_mser_get_regions |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- array of MSER pivots.
| vl_uint vl_mser_get_regions_num |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- number of MSERs.
| VlMserStats const * vl_mser_get_stats |
( |
VlMserFilt const * |
f | ) |
|
|
inline |
- Parameters:
-
- Returns:
- statistics.
| VlMserFilt* vl_mser_new |
( |
int |
ndims, |
|
|
int const * |
dims |
|
) |
| |
Initializes a new MSER filter for images of the specified dimensions. Images are ndims -dimensional arrays of dimensions dims.
- Parameters:
-
| ndims | number of dimensions. |
| dims | dimensions. |
| void vl_mser_process |
( |
VlMserFilt * |
f, |
|
|
vl_mser_pix const * |
im |
|
) |
| |
The functions calculates the Maximally Stable Extremal Regions (MSERs) of image im using the MSER filter f.
The filter f must have been initialized to be compatible with the dimensions of im.
- Parameters:
-
| f | MSER filter. |
| im | image data. |
| void vl_mser_set_delta |
( |
VlMserFilt * |
f, |
|
|
vl_mser_pix |
x |
|
) |
| |
|
inline |
- Parameters:
-
| f | MSER filter. |
| x | value of delta. |
| void vl_mser_set_max_area |
( |
VlMserFilt * |
f, |
|
|
double |
x |
|
) |
| |
|
inline |
- Parameters:
-
| f | MSER filter. |
| x | maximum region area. |
| void vl_mser_set_max_variation |
( |
VlMserFilt * |
f, |
|
|
double |
x |
|
) |
| |
|
inline |
- Parameters:
-
| f | MSER filter. |
| x | maximum region variation. |
| void vl_mser_set_min_area |
( |
VlMserFilt * |
f, |
|
|
double |
x |
|
) |
| |
|
inline |
- Parameters:
-
| f | MSER filter. |
| x | minimum region area. |
| void vl_mser_set_min_diversity |
( |
VlMserFilt * |
f, |
|
|
double |
x |
|
) |
| |
|
inline |
- Parameters:
-
| f | MSER filter. |
| x | value of minimum diversity. |