23 #include <opencv2/opencv.hpp>
29 template <
typename _Tp>
30 void OLBP_(
const cv::Mat& src, cv::Mat& dst);
32 template <
typename _Tp>
33 void ELBP_(
const cv::Mat& src, cv::Mat& dst,
int radius = 1,
int neighbors = 8);
35 template <
typename _Tp>
36 void VARLBP_(
const cv::Mat& src, cv::Mat& dst,
int radius = 1,
int neighbors = 8);
39 void OLBP(
const cv::Mat& src, cv::Mat& dst);
40 void ELBP(
const cv::Mat& src, cv::Mat& dst,
int radius = 1,
int neighbors = 8);
41 void VARLBP(
const cv::Mat& src, cv::Mat& dst,
int radius = 1,
int neighbors = 8);
44 cv::Mat OLBP(
const cv::Mat& src);
45 cv::Mat ELBP(
const cv::Mat& src,
int radius = 1,
int neighbors = 8);
46 cv::Mat VARLBP(
const cv::Mat& src,
int radius = 1,
int neighbors = 8);
Original code by philipp <bytefish[at]gmx[dot]de>
void VARLBP_(const cv::Mat &src, cv::Mat &dst, int radius=1, int neighbors=8)
void OLBP_(const cv::Mat &src, cv::Mat &dst)
Original code by philipp <bytefish[at]gmx[dot]de>