We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In 7_generate_uv_map.py, following code is trying to verify the uv_position_map.
# - verify import cv2 uv_texture_map_rec = cv2.remap(image, uv_position_map[:,:,:2].astype(np.float32), None, interpolation=cv2.INTER_LINEAR, borderMode=cv2.BORDER_CONSTANT,borderValue=(0)) out_name = '{}/uv_texture_map_rec.jpg'.format(save_folder) io.imsave(out_name, np.squeeze(uv_texture_map_rec))
In my opinion, the output uv_texture_map_rec should be similar with uv_texture_map. But I get some thing different.
uv_texture_map:
and uv_texture_map_rec:
There are a lot of differences between both.
The text was updated successfully, but these errors were encountered:
i run the same result
Sorry, something went wrong.
No branches or pull requests
In 7_generate_uv_map.py, following code is trying to verify the uv_position_map.
In my opinion, the output uv_texture_map_rec should be similar with uv_texture_map.
But I get some thing different.
uv_texture_map:
and uv_texture_map_rec:
There are a lot of differences between both.
The text was updated successfully, but these errors were encountered: