I am trying to render on a webbased tool which expect the following keys from the original GS .ply file.
color = np.array( [ 0.5 + SH_C0 * v["f_dc_0"], 0.5 + SH_C0 * v["f_dc_1"], 0.5 + SH_C0 * v["f_dc_2"], 1 / (1 + np.exp(-v["opacity"])), ] )
Can you please comment what are the alternative keys in the .ply file saved by your method as I couldn't find the following (property float f_dc_0
property float f_dc_1
property float f_dc_2 )keys in your method's .ply file?
Hi, our method generates the RGB format color using MLP according to the feature and observation view. So, the .ply file does not store the f_dc_*. You can refer to Ours and 3DGS.
I am trying to render on a webbased tool which expect the following keys from the original GS .ply file.
color = np.array( [ 0.5 + SH_C0 * v["f_dc_0"], 0.5 + SH_C0 * v["f_dc_1"], 0.5 + SH_C0 * v["f_dc_2"], 1 / (1 + np.exp(-v["opacity"])), ] )
Can you please comment what are the alternative keys in the .ply file saved by your method as I couldn't find the following (property float f_dc_0 property float f_dc_1 property float f_dc_2 )keys in your method's .ply file?