Example #1
0
 def __init__(self):
     CommonStitch.__init__(self)
     # So we don't compute the same match twice
     # (file name 1 , file_name 2) pairs
     # file name 1 < file_name 2
     self.tried_pairs = set()
     # of type SubProject
     # The projects we've already generated
     self.sub_projects = list()
     self.position_map = list()
     self.spatial_map = spatial_map.SpatialMap()
Example #2
0
	def __init__(self):
		CommonStitch.__init__(self)
		# So we don't compute the same match twice
		# (file name 1 , file_name 2) pairs
		# file name 1 < file_name 2
		self.tried_pairs = set()
		# of type SubProject
		# The projects we've already generated
		self.sub_projects = list()
		self.position_map = list()
		self.spatial_map = spatial_map.SpatialMap()
Example #3
0
	def __init__(self):
		self.tried_pairs = set()
		self.sub_projects = list()

		# Project we will take stuff from
		self.input_project = None	
		# for now just take params from previous since parsing issues
		# If nothing else this speeds things up anyway
		self.image_file_names = None
		self.tried_pairs = None
		self.spatial_map = None
		CommonStitch.__init__(self)
Example #4
0
	def __init__(self):
		self.tried_pairs = set()
		self.sub_projects = list()

		# Project we will take stuff from
		self.input_project = None	
		# for now just take params from previous since parsing issues
		# If nothing else this speeds things up anyway
		self.image_file_names = None
		self.tried_pairs = None
		self.spatial_map = None
		CommonStitch.__init__(self)
Example #5
0
 def __init__(self):
     CommonStitch.__init__(self)
     self.canon2orig = dict()
Example #6
0
	def __init__(self):
		CommonStitch.__init__(self)
		self.canon2orig = dict()
Example #7
0
	def __init__(self):
		CommonStitch.__init__(self)
		self.coordinate_map = None