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