Lines Matching refs:u
75 u = cap["data"][w*h:w*h*5/4]
77 return convert_yuv420_planar_to_rgb_image(y, u, v, w, h)
253 u = cap["data"][w*h:w*h*5/4]
256 (u.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1),
460 u = numpy.subtract(u_plane, yuv_off[1]).view(numpy.int8)
462 u = u.reshape(h/2, w/2).repeat(2, axis=1).repeat(2, axis=0)
464 yuv = numpy.dstack([y, u.reshape(w*h), v.reshape(w*h)])
523 u = numpy.fromfile(f, numpy.uint8, w*h/4, "")
529 u = vu[1::2]
533 y,u,v,w,h,ccm_yuv_to_rgb,yuv_off)
553 u = numpy.fromfile(f, numpy.uint8, w*h/4, "")
555 (u.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1),