Closed hwei-hw closed 6 years ago
.mat data can be downloaded from http://people.duke.edu/~sf59/Chiu_BOE_2014_dataset.htm
@zhewang95 Thanks very much for your reply! But the data from http://people.duke.edu/~sf59/Chiu_BOE_2014_dataset.htm is different from the author's ones. for examples, the rows of image is 512 in author's code but the image's rows is 496 in mat(Sub_1.mat, the image's size is [496,768,61]). So I don't know the author how to get the data?
whether the trained PyTorch model can deal the image with different shape with train image ? for example, the train image's shape is [512,64,1] and the test image is [496,64,1]. is it right ?
I think yes, the paper also say that.
@zhewang95 Thank you very much! I will try it as soon as possible. Is it convenient to ask about your research direction? OCT image segmentation?if yes, I think we can communicate with each other if you do not mind.
Sure, I'd like to. can't see your email, can you email me your wechat or what you like?
@zhewang95 Thanks very much ! I will send a email for my WeChat
@Atomwh As the network is fully convolutional, it can handle test data of any size. I changed the data size to 512 rows by padding (power of 2), which makes it easy to track the intermediate feature map size. Also note that the data slicing code is not yet implemented in this version. It is in the original code in my repo.
@abhi4ssj Thanks very much for your reply ! I'm trying to test my data.
@abhi4ssj Could you open the 'Data.h5'? Thanks very much!!