Skip to content
Snippets Groups Projects
Commit f8ac0cd4 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[rlt] Set seed, fixes #2

parent c4eab707
No related branches found
No related tags found
1 merge request!13Annotation experiments
...@@ -25,8 +25,9 @@ class RepeatedLineTracking (Extractor): ...@@ -25,8 +25,9 @@ class RepeatedLineTracking (Extractor):
self, self,
iterations = 3000, # Maximum number of iterations iterations = 3000, # Maximum number of iterations
r = 1, # Distance between tracking point and cross section of the profile r = 1, # Distance between tracking point and cross section of the profile
profile_w = 21, # Width of profile (Error: profile_w must be odd) profile_w = 21, # Width of profile (Error: profile_w must be odd)
rescale = True, rescale = True,
seed = 0, # Seed for the algorithm's random walk
): ):
# call base class constructor # call base class constructor
...@@ -36,6 +37,7 @@ class RepeatedLineTracking (Extractor): ...@@ -36,6 +37,7 @@ class RepeatedLineTracking (Extractor):
r = r, r = r,
profile_w = profile_w, profile_w = profile_w,
rescale = rescale, rescale = rescale,
seed = seed,
) )
# block parameters # block parameters
...@@ -43,12 +45,16 @@ class RepeatedLineTracking (Extractor): ...@@ -43,12 +45,16 @@ class RepeatedLineTracking (Extractor):
self.r = r self.r = r
self.profile_w = profile_w self.profile_w = profile_w
self.rescale = rescale self.rescale = rescale
self.seed = seed
def repeated_line_tracking(self, finger_image, mask): def repeated_line_tracking(self, finger_image, mask):
"""Computes and returns the MiuraMax features for the given input """Computes and returns the MiuraMax features for the given input
fingervein image""" fingervein image"""
# Sets the random seed before starting to process
numpy.random.seed(self.seed)
#Convert image to uint8 #Convert image to uint8
if finger_image.dtype != numpy.uint8: if finger_image.dtype != numpy.uint8:
finger_image = bob.core.convert(finger_image,numpy.uint8,(0,255),(0,1)) finger_image = bob.core.convert(finger_image,numpy.uint8,(0,255),(0,1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment