WongKinYiu / yolov7

Implementation of paper - YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors
GNU General Public License v3.0
13.02k stars 4.12k forks source link

Details about instance segmentation #736

Open levan92 opened 1 year ago

levan92 commented 1 year ago

May I know if you have details documenting the instance segmentation model and training you've implemented here? Is it in any paper? Thanks!

WongKinYiu commented 1 year ago

The architecture of yolov7-mask mainly based on blendmask. The architecture of yolov7-seg mainly based on yolact.

levan92 commented 1 year ago

Okay, got it. Thank you!

levan92 commented 1 year ago

Sorry, just to clarify. Both "mask" and "seg" branches are for instance segmentation right? Just that "mask" is based off blendmask and "seg" is based off yolact?

siddagra commented 1 year ago

Seems correct @levan92. Though I did not make it so I can't be 100% sure.