-
-
Notifications
You must be signed in to change notification settings - Fork 827
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
[meshing] export computed bounding box #1473
Conversation
79c7512
to
74f9140
Compare
@@ -481,6 +520,19 @@ int aliceVision_main(int argc, char* argv[]) | |||
const double height = hexah[0].z - hexah[4].z; | |||
|
|||
ALICEVISION_LOG_INFO("bounding Box : length: " << length << ", width: " << width << ", height: " << height); | |||
|
|||
// Save bounding box |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we should be saving this bounding box with a custom txt format.
A more standard mesh format (OBJ for instance) would probably be more suited as it would allow opening the bounding box in any 3D software.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good remark, but easier to use the same parameters to represent the bbox everywhere.
c5dafe7
to
4bb4a35
Compare
4bb4a35
to
aa22b34
Compare
To be used in meshroom for visualizing the automatically estimated bounding box.
See alicevision/Meshroom#2087