cxh0519 / Progressive3D

Official implementation of "Progressive3D: Progressively Local Editing for Text-to-3D Content Creation with Complex Semantic Prompts" [ICLR 2024]
MIT License
106 stars 3 forks source link

Some questions on the box configs. #5

Closed Colezwhy closed 5 months ago

Colezwhy commented 5 months ago

Hi, thank you for the great job and congratulations! Very inspiring and solid work!

But I am wondering that what indeed is the box config about? Since in the README said box center and scale, but why the scales could be 0? And isn't the coordinate value of box center too small? I am very curious about it, would you please give me a more detailed explanation? That will be super helpful for me.

Thank you for your precious time!

cxh0519 commented 5 months ago

The editable region is defined as box_info=[box center; box size] Noticing that the space range is [-1, 1] in all axises, which means [0, 0, 0] is the center of the space. For instance, [2.0, 0.5, 1.0, 0.0, 0.0, -0.6] demonstrate that the box's length is 2.0 in X-axis, 0.5 in Y-axis and 1.0 in Z-axis. And the center of the box is [0, 0, -0.6]

Colezwhy commented 5 months ago

The editable region is defined as box_info=[box center; box size] Noticing that the space range is [-1, 1] in all axises, which means [0, 0, 0] is the center of the space. For instance, [2.0, 0.5, 1.0, 0.0, 0.0, -0.6] demonstrate that the box's length is 2.0 in X-axis, 0.5 in Y-axis and 1.0 in Z-axis. And the center of the box is [0, 0, -0.6]

Thank you, but isn't it box_info=[box size, box center]?

cxh0519 commented 5 months ago

Sorry for the typo. The box_info is [box size, box center]. Thanks for your remind and I'll revise the README.