Lines Matching full:scene
130 xnorm: float; [0, 1] left loc of chart in scene
131 ynorm: float; [0, 1] top loc of chart in scene
132 wnorm: float; [0, 1] width of chart in scene
133 hnorm: float; [0, 1] height of chart in scene
143 chart, scene, s_factor = self._calc_scale_factors(cam, props, fmt,
155 if numpy.amax(scene) <= 1.0:
156 scene = (scene * 255.0).astype(numpy.uint8)
157 scene_gray = gray_scale_img(scene)
158 print 'Finding chart in scene...'
170 estring = ('Warning: unable to find chart in scene!\n'
193 self.wnorm = float((bottom_right[0]) - top_left[0]) / scene.shape[1]
194 self.hnorm = float((bottom_right[1]) - top_left[1]) / scene.shape[0]
195 self.xnorm = float(top_left[0]) / scene.shape[1]
196 self.ynorm = float(top_left[1]) / scene.shape[0]