0

I am trying to extract the LBPFeatures of an image using OpenCV and C++, but there seems to be no in-built function to extract the features.
Can anyone help me?
I need to find the feature points and not the histogram.

Noob Coder
  • 244
  • 2
  • 6
  • Possible duplicate of [How to calculate Local Binary Pattern Histograms with OpenCV?](http://stackoverflow.com/questions/13733448/how-to-calculate-local-binary-pattern-histograms-with-opencv) – tfv Jun 02 '16 at 06:09
  • Calculating the Histogram and extracting the features points are two different things.! – Noob Coder Jun 02 '16 at 06:30

1 Answers1

0

The LBP authors give an optimized C code in one of their papers: here is the link.

FiReTiTi
  • 5,201
  • 12
  • 24
  • 55