The output of skimage.feature.local_binary_pattern from _calc_texture_gradient for each pixel ranges from 0 to 255. However, in _calc_texture_hist function, the range input for numpy.histogram is (0.0, 1.0) that causes the function to ignore most of the pixels. Is this behavior expected?
The output of
skimage.feature.local_binary_patternfrom_calc_texture_gradientfor each pixel ranges from 0 to 255. However, in_calc_texture_histfunction, the range input fornumpy.histogramis(0.0, 1.0)that causes the function to ignore most of the pixels. Is this behavior expected?