Esempio n. 1
0
 def __init__(self, filename):
     """ create from a filename (String)"""
     self.obj = filename_object(filename)
Esempio n. 2
0
 def jump_object(self, num):
     """ jump to and read image """
     return filename_object(self.jump(num))
Esempio n. 3
0
 def current_object(self):
     """ current image in sequence """
     return filename_object(self.current())
Esempio n. 4
0
 def next_object(self):
     """ Return the next image """
     return filename_object(self.next())
Esempio n. 5
0
 def previous_object(self):
     """ Return the previous image """
     return filename_object(self.previous())
Esempio n. 6
0
 def first_object(self):
     """ first image in a sequence """
     return filename_object(self.first())
Esempio n. 7
0
 def last_object(self):
     """ last image in a sequence """
     return filename_object(self.last())
Esempio n. 8
0
 def current_object(self):
     """ current image in sequence """
     return filename_object(self.current())
Esempio n. 9
0
 def __init__(self, filename):
     """ create from a filename (String)"""
     self.obj = filename_object(filename)
Esempio n. 10
0
 def jump_object(self, num):
     """ jump to and read image """
     return filename_object(self.jump(num))
Esempio n. 11
0
 def previous_object(self):
     """ Return the previous image """
     return filename_object(self.previous())
Esempio n. 12
0
 def next_object(self):
     """ Return the next image """
     return filename_object(self.next())
Esempio n. 13
0
 def last_object(self):
     """ last image in a sequence """
     return filename_object(self.last())
Esempio n. 14
0
 def first_object(self):
     """ first image in a sequence """
     return filename_object(self.first())