I use cv2.imread to read a depth map like depth = 200*cv2.imread(path,-1)/65535. But I found the value is invalid! When I change my code to depth = 200.0*cv2.imread(path,-1)/65535, it looks right. Besides, when I read the depth like depth = cv2.imread(path,-1)/65535 depth *= 200, it looks right too!