#include <opencv2/highgui/highgui.hpp>
#include <opencv/cv.hpp>
#include <opencv2/core/core.hpp>
Go to the source code of this file.
|
| void | getLBP (Mat &img) |
| | getLBP calculate the LBP feature More...
|
| |
| template<class T > |
| T | move (T val, int n) |
| | rotation shift More...
|
| |
| template<class T > |
| void | printBinary (T val) |
| | print binary format of val More...
|
| |
| uchar | minRotation (uchar &val) |
| | minRotation calculate the minimal value of the rotation shift More...
|
| |
| void | getLBPRI (Mat &img) |
| | getLBPRI compute the rotation invariant LBP More...
|
| |
getLBP calculate the LBP feature
- Parameters
-
| void getLBPRI |
( |
Mat & |
img) | |
|
getLBPRI compute the rotation invariant LBP
- Parameters
-
| img | the image to calculate |
| uchar minRotation |
( |
uchar & |
val) | |
|
minRotation calculate the minimal value of the rotation shift
- Parameters
-
- Returns
rotation shift
- Parameters
-
| val | |
| n | the number of bit to move.if n > 0 then left shift; if n < 0 then right shift |
template<class T >
| void printBinary |
( |
T |
val) | |
|
print binary format of val
- Parameters
-
| val | print the val with the binary format |