Lines Matching full:scene
222 xnorm: float; [0, 1] left loc of chart in scene
223 ynorm: float; [0, 1] top loc of chart in scene
224 wnorm: float; [0, 1] width of chart in scene
225 hnorm: float; [0, 1] height of chart in scene
230 chart, scene, s_factor = self._calc_scale_factors(cam, props, fmt, log_path)
241 if numpy.amax(scene) <= 1.0:
242 scene = (scene * 255.0).astype(numpy.uint8)
243 scene_gray = gray_scale_img(scene)
244 logging.debug('Finding chart in scene...')
261 estring = ('Warning: unable to find chart in scene!\n'
282 self.wnorm = ((bottom_right[0]) - top_left[0]) / scene.shape[1]
283 self.hnorm = ((bottom_right[1]) - top_left[1]) / scene.shape[0]
284 self.xnorm = (top_left[0]) / scene.shape[1]
285 self.ynorm = (top_left[1]) / scene.shape[0]
426 'Background of scene may be too complex.')