zhang-tao-whu / e2ec

E2EC: An End-to-End Contour-based Method for High-Quality High-Speed Instance Segmentation
Other
214 stars 45 forks source link

Question about Multi-direction alignment (MDA) #24

Closed hannn0919 closed 1 year ago

hannn0919 commented 1 year ago

Thanks for your work! But I am confused about the Multi-direction alignment (MDA) part, can you explain in more detail? Which part of the code does the MDA correspond to? If I want to try to change the value of M, where should I adjust it?

zhang-tao-whu commented 1 year ago

You can read the 76-77 lines of the code in dataset/train/base.py. If you want to try to change the value of M, you need to implement the new sampling function (you can refer to four_idx) for the alignment point.

hannn0919 commented 1 year ago

Thanks for your reply!