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