Home | History | Annotate | Download | only in barcode_tools

Lines Matching refs:height

26       plane. The sizes equal width, height and crop_height for the Y plane,
27 and are equal to width/2, height/2 and crop_height/2 for the U and V
47 def crop_frames(yuv_file_name, output_file_name, width, height, crop_height):
58 height(int): The height of the original YUV file.
59 crop_height(int): The height (the number of pixel rows) to be cropped from
63 component_sizes = [(width, height, crop_height),
64 (width/2, height/2, crop_height/2),
65 (width/2, height/2, crop_height/2)]
87 parser.add_option('--height', type='int', default=288,
88 help=('Height of the YUV file\'s frames. '
108 ./yuv_cropper.py --width=640 --height=480 --crop_height=32
120 options.height, options.crop_height)