Skip to content
Snippets Groups Projects

Issue #13

3 files
+ 67
10
Compare changes
  • Side-by-side
  • Inline

Files

@@ -36,10 +36,6 @@ class MaximumCurvature (Extractor):
"""Computes and returns the Maximum Curvature features for the given input
fingervein image"""
if image.dtype != numpy.uint8:
image = bob.core.convert(image,numpy.uint8,(0,255),(0,1))
#No es necesario pasarlo a uint8, en matlab lo dejan en float64. Comprobar si varian los resultados en vera database y ajustar.
finger_mask = numpy.zeros(mask.shape)
finger_mask[mask == True] = 1
Loading