-
Notifications
You must be signed in to change notification settings - Fork 27
Home
Ryota MAEDA edited this page Aug 13, 2020
·
14 revisions
To find the corresponding points between the projector and the camera, we need to know the code at each pixel position in the image. Some of the codes (Binary, Gray, XOR, ...) are binary numbers. Therefore, it is necessary to convert the captured grayscale image into the binary image.
The simplest method is to set a threshold value and compare it with the pixel values of a grayscale image.

imgs_code = gray.generate((width, height))
decode = gray.decode(imgs_code, thresh=127)This method is effective for uniform reflectivity. However, in the actual scene, it cannot be robustly binarized due to uneven reflectivity and illumination.
![]()
imgs_code = gray.generate((width, height))
img_white = np.full((width, height), 255, dtype=np.uint8)
img_black = np.full((width, height), 0 , dtype=np.uint8)
img_thresh = 0.5*img_white + 0.5*img_black
decode = gray.decode(imgs_code, thresh=img_thresh)
imgs_posi = gray.generate((width, height))
imgs_nega = [ 255-img for img in imgs_posi ]
decode = gray.decode(imgs_posi, imgs_nega)