Searched refs:xc (Results 1 – 1 of 1) sorted by relevance
/pdk/apps/CameraITS/pymodules/its/ |
D | image.py | 543 def __measure_color_checker_patch(img, xc,yc, patch_size): argument 545 tile = img[yc-r:yc+r+1:, xc-r:xc+r+1:, ::] 638 xc = xchart + (x + 0.5)*wchart/xgrids 640 xc = int(xc * DOWNSCALE_FACTOR + 0.5) 642 centers.append((xc,yc)) 643 chan_means = __measure_color_checker_patch(img, xc,yc, 32) 675 xc = int(x0 + dxh*xi + dxv*yi) 677 patches[yi].append((xc,yc)) 688 xc,yc = patches[yi][xi] 689 means = __measure_color_checker_patch(img, xc,yc, 64) [all …]
|