Lines Matching full:scene
322 # the chart will take up more of the scene. Assume w > h, since this is
342 xnorm: float; [0, 1] left loc of chart in scene
343 ynorm: float; [0, 1] top loc of chart in scene
344 wnorm: float; [0, 1] width of chart in scene
345 hnorm: float; [0, 1] height of chart in scene
351 chart, scene, s_factor = self._calc_scale_factors(cam, props, fmt, log_path,
363 if numpy.amax(scene) <= 1.0:
364 scene = (scene * 255.0).astype(numpy.uint8)
365 scene_gray = gray_scale_img(scene)
366 logging.debug('Finding chart in scene...')
383 estring = ('Warning: unable to find chart in scene!\n'
410 self.wnorm = ((bottom_right[0]) - top_left[0]) / scene.shape[1]
411 self.hnorm = ((bottom_right[1]) - top_left[1]) / scene.shape[0]
412 self.xnorm = (top_left[0]) / scene.shape[1]
413 self.ynorm = (top_left[1]) / scene.shape[0]
414 patch = image_processing_utils.get_image_patch(scene, self.xnorm,
601 'Background of scene may be too complex.')
608 """Find circle closest to image center for scene with multiple circles.
816 'Background of scene may be too complex.')