lzhengning / SubdivNet

Subdivision-based Mesh Convolutional Networks.
MIT License
247 stars 34 forks source link

Question about data preprocessing #17

Closed tky135 closed 3 years ago

tky135 commented 3 years ago

Hi, a few questions regarding preprocessing for segmentation:

  1. How do you get sub_labels? Do you project the faces onto raw data? Is there any manual work involved in this process?
  2. When you reported your accuracies, whose labels did you use as the ground truth? The labels in the remeshed data or the raw data?

Thanks.

lzhengning commented 3 years ago

Hi @tky135 ,

How do you get sub_labels?

sub_labels is obtained by projection labels on the raw mesh to the remeshed. The implementation is described here.

Do you project the faces onto raw data?

Yes, the segmentation results on the remeshed are all projected to the raw data. The reported accuracy is also calculated on the raw data.

Is there any manual work involved in this process?

No manually mapping is needed.

When you reported your accuracies, whose labels did you use as the ground truth? The labels in the remeshed data or the raw data?

The ground truth is the per face labels on the raw data.

tky135 commented 3 years ago

Thanks for your reply.