easonyang1996 / CS-CO

MICCAI2021 Paper: Self-supervised visual representation learning for histopathological images
MIT License
26 stars 4 forks source link

请问有论文中最佳效果的预训练好的模型吗 #2

Open irsLu opened 2 years ago

easonyang1996 commented 2 years ago

Of course, you can download it from https://drive.google.com/file/d/1h7SSzndEm486-gAbwtKA81hO4TA84Ita/view?usp=sharing

irsLu commented 2 years ago

Of course, you can download it from https://drive.google.com/file/d/1h7SSzndEm486-gAbwtKA81hO4TA84Ita/view?usp=sharing

非常感谢~,再次打扰您了,请问还有一个问题是我通过您的代码csco_vahadnae.py来实现H、E分离的图片结果与您的效果有点不一致,我代码是否存在错误呢? 代码如下:

v = vahadane(fast_mode=0) I0 = imageio.imread('./2.png') W,H = v.stain_separate(I0)

_H,_W,_C = I0.shape Ih = (255 np.resize(np.exp(-H[0, :]), (_H, _W, 1)) ).astype(np.uint8) Ie = (255 np.resize(np.exp(-H[1, :]), (_H, _W, 1)) ).astype(np.uint8)

imageio.imsave('./h.png', Ih) imageio.imsave('./e.png', Ie)

jjl001 commented 2 years ago

@easonyang1996
请问一下这个是cs的模型吗? https://drive.google.com/file/d/1h7SSzndEm486-gAbwtKA81hO4TA84Ita/view?usp=sharing 有没有cs-co的模型?

HHHedo commented 1 year ago

Of course, you can download it from https://drive.google.com/file/d/1h7SSzndEm486-gAbwtKA81hO4TA84Ita/view?usp=sharing

Thanks for your great work! I wonder whether you can release other pre-trained models (e.g., the models of chen_MIA and XIE_miccai), which can help the following works a lot.