-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
The result is not match with your given npz file #5
Comments
It seem that the data is different from ours.
It output For the input rgb:
It output |
Hi thanks for reply, there is my result: >>> from imageio import imread
>>> depth = imread('/data1/lhw/workspace/HoHoNet/data/stanford2D3D/area_5a/depth/camera_e7c078fec2414967b99f65c847b9d38a_office_11_frame_equirectangular_domain_depth.png')
>>> print(depth.min(), depth.max(), depth[depth!=65535].max())
0 65535 65534
>>> rgb = imread('/data1/lhw/workspace/HoHoNet/data/stanford2D3D/area_5a/rgb/camera_e7c078fec2414967b99f65c847b9d38a_office_11_frame_equirectangular_domain_rgb.png')
>>> print((rgb==0).all(-1).mean())
0.0 Different from your result, can you upload your datasets just for depth train and valid? Thanks very much! Have a good day. |
I think I don't have the right to distribute Stanford2d3d dataset. The official RGBs show black in the north-/south-pole region. >>> print((rgb==0).all(-1).mean())
0.0 It seem that you use the restiched one? |
您好,非常感谢您的解答,但是我还是有一些问题我按照您的https://github.com/sunset1995/HoHoNet/blob/master/README_prepare_data_s2d3d.md from imageio import imread
rgb = imread('/home/lmolhw/workspace/HoHoNet/Data_test/Stanford/area_5a/rgb/camera_e7c078fec2414967b99f65c847b9d38a_office_11_frame_equirectangular_domain_rgb.png')
print((rgb==0).all(-1).mean())
depth = imread('/home/lmolhw/workspace/HoHoNet/Data_test/Stanford/area_5a/depth/camera_e7c078fec2414967b99f65c847b9d38a_office_11_frame_equirectangular_domain_depth.png')
print(depth.min(), depth.max(), depth[depth!=65535].max())
另外还有几个问题:
|
Hi,I use your given pth file and your yaml
I use test_depth.py file,
ckpt/s2d3d_depth_HOHO_depth_dct_efficienthc_TransEn1/ep60.pth
config/s2d3d_depth/HOHO_depth_dct_efficienthc_TransEn1.yaml
{'mre': array(0.10142188), 'mae': array(0.2026864), 'rmse': array(0.38335027), 'rmse_log': array(0.06684125), 'log10': array(0.04376619), 'delta_1': array(0.90537266), 'delta_2': array(0.96934565), 'delta_3': array(0.98862388)}
mre 163.6033
mae 1.8321
rmse 2.0242
rmse_log 2.1812
log10 2.1632
delta_1 0.0001
delta_2 0.0002
delta_3 0.0005
The text was updated successfully, but these errors were encountered: