-
Notifications
You must be signed in to change notification settings - Fork 4
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
3D Building Reconstruction #5
Comments
Thank you for your attention. In this part of the post-processing, we assign the predicted height values to the pixels of the predicted building masks, then convert the raster result to vector shapefile. Finally, we input the satellite images and prediction results together into ArcScene 10.8 for visualization. |
Should the network be retrained to achieve building segmentation, or can the prediction results be processed directly? Could you please introduce the specific process of realizing three - dimensional visualization for the prediction results of this network? Thank you. |
The output of the model includes the segmentation mask results of the building, which do not require retraining. We vectorize the segmentation mask results and use the height prediction results as attributes of the vector polygon. With software, we can obtain 3D visualization results based on the height attribute values. |
I noticed in the paper that the segmentation results are regularized and polygonized, with a reference to [38]. Has the implementation code been open-sourced? I am just starting to work on 3D reconstruction and would like to ask what method is used for vectorizing segmentation masks? Looking forward to your reply, thank you very much. |
We used the model from [38] for regularization (this step is not necessary), please refer to link for details. Of course, you can also use other better methods or models. Vectorization is implemented using libraries such as rasterio and geopandas. |
Hello, thank you for sharing such wonderful work!

However, there is a problem that is bothering me. It seems that I have not found the steps to rebuild and visualize the building. Can you help me solve it? Thank you!
The text was updated successfully, but these errors were encountered: