pakheiyeung / PlaneInVol

A network, trained with just registered volumes, to predict the 3D location of 2D freehand ultrasound fetal brain images and video
32 stars 6 forks source link

Pre-trained weights + questions on input format #4

Open chiaradivece opened 1 month ago

chiaradivece commented 1 month ago

Hey there,

Great work! I have a few questions about the implementation details:

Thank you for your help and for sharing this work!

Best, Chiara

pakheiyeung commented 1 month ago

Thanks for your questions.

  1. I am sorry that due to the data agreement, we cannot make the pre-trained weights public currently. We would like to do that in the future and are looking for alternative ways for that.
  2. The volumes we tested on are 160x160x160. But other dimensions should also be fine (better to be divisible by 2^4 due to the downsampling in the network). Different file formats are fine, but maybe you need to edit the dataloader a bit.
  3. The masks are used solely during training. I think in high level, as long as you can sample 2D slices from a volume and know their position in the 3D volume. You can use them for training
  4. Masks are not needed during inference. They are used in testing in the paper so that we can focus on the brain region for quantifying the results. But for real applications, masks are not needed during inference.