liamheng / Annotation-free-Fundus-Image-Enhancement

Project for annotation-free image enhancement of fundus, cataract data.
30 stars 5 forks source link

Some questions about the experiment in the paper on MICCAI2022 "Structure-Consistent Restoration Network for Cataract Fundus Image Enhancement" #1

Closed Nimbus2002 closed 5 months ago

Nimbus2002 commented 1 year ago

Hello, first thank you for providing the code :) I read your paper "Structure-Consistent Restoration Network for Cataract Fundus Image Enhancement" on MICCAI 2022! Nice paper👍

I have some questions about the experiment in the paper,

  1. About the ablation study you conducted, I don't get how you did that. Because the input of SCR-Net is H(S'k), a high frequency of SCS, how could you run your code without using SCS nor H()? is it even possible to train your model without them? image image

  2. About the training process, how did you set stopping criteria? I am doing a similar project and want to have some intuition into how the published paper writer stopped training.

Thank you in advance! Hope you have a good day, Sincerely, Ellen

liamheng commented 5 months ago

@HeverLaw

HeverLaw commented 5 months ago
  1. In the ablation study, you can adjust the input dimension to 3 in order to process RGB-only images, which allows you to train a new model specifically for this purpose.
  2. We continue training until the predefined number of epochs is reached. To select the best model, we evaluate it using synthetic fundus images from the evaluation dataset. Generally, the model achieves the best performance close to the end of the training process.