Hi,
First of all, I would like to thank you for sharing your impressive work.
The released code has a small bug in the 3D vertices saver:
The hight used in the line:
save_vertices[:,1] = h - 1 - save_vertices[:,1]
Is of the pre-cropped image (I.e. if max_size> 1000: image = rescale(image, 1000./maxsize) may had a diffrent hight )
To fix the bug just replace the orignal line in the following lines with:
[h1, w1, ] = image.shape
save_vertices[:,1] = h1 - 1 - save_vertices[:,1]
Thank you,
Avi
Hi, First of all, I would like to thank you for sharing your impressive work. The released code has a small bug in the 3D vertices saver: The hight used in the line: save_vertices[:,1] = h - 1 - save_vertices[:,1] Is of the pre-cropped image (I.e. if max_size> 1000: image = rescale(image, 1000./maxsize) may had a diffrent hight ) To fix the bug just replace the orignal line in the following lines with: [h1, w1, ] = image.shape save_vertices[:,1] = h1 - 1 - save_vertices[:,1] Thank you, Avi