Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 5
0
 def __init__(self):
     CommonStitch.__init__(self)
     self.canon2orig = dict()
Ejemplo n.º 6
0
	def __init__(self):
		CommonStitch.__init__(self)
		self.canon2orig = dict()
Ejemplo n.º 7
0
	def __init__(self):
		CommonStitch.__init__(self)
		self.coordinate_map = None