ying09 / TextFuseNet

A PyTorch implementation of "TextFuseNet: Scene Text Detection with Richer Fused Features".
MIT License
475 stars 123 forks source link

multi-path fusion in detection branch ? #53

Open TaekyungKi opened 3 years ago

TaekyungKi commented 3 years ago

Hi, thank you for interesting works.

I'm confused about multi-path fusion in detection branch. In the paper, it is explained the multi-path fusion in detection branch, which fuses "word level features" and "global level features (from Semantic segmentation branch)". This is depicted in Figure.2, and is explained in section 3.1, 3.2 in the paper.

But in the code, the multi-path fusion in detection branch is not there. The class method "_forward_box" in class "StandardROIHeads" of /detectron2/modeling/roi_heads.py, does not use multi-path fuse, unlike the class method "_forward_mask" in the same root.. right? Moreover, "mutil_path_fuse_module.py" explains the argument is mask roi features..

Is there anything i missed? Thank you.

qutrino commented 3 years ago

@TaekyungKi The same question and the author's answer are in the issue #14.