Local Binary Patterns (LBP) - Definition.
More...
#include "lbp.h"
#include "mathop.h"
#include "string.h"
◆ vl_lbp_delete()
void vl_lbp_delete |
( |
VlLbp * |
self | ) |
|
◆ vl_lbp_get_dimension()
- Returns
- dimension of the LBP histograms. The dimension depends on the type of quantization used.
- See also
- vl_lbp_new().
◆ vl_lbp_new()
- Parameters
-
type | type of LBP features. |
transposed | if true , then transpose each LBP pattern. |
- Returns
- new VlLbp object instance.
◆ vl_lbp_process()
- Parameters
-
self | LBP object. |
features | buffer to write the features to. |
image | image. |
width | image width. |
height | image height. |
cellSize | size of the LBP cells. |
features is a numColumns
x numRows
x dimension
where dimension
is the dimension of a LBP feature obtained from vl_lbp_get_dimension, numColumns
is equal to floor
(width / cellSize), and similarly for numRows
.