toandaominh1997 / EfficientDet.Pytorch

Implementation EfficientDet: Scalable and Efficient Object Detection in PyTorch
MIT License
1.44k stars 306 forks source link

TypeError: 'Axes' object is not iterable in vis_bbox #25

Open kaonick opened 4 years ago

kaonick commented 4 years ago
    if len(bbox) == 0:
        return ax

should change to:

    if len(bbox) == 0:
        return fig,ax
toandaominh1997 commented 4 years ago

Thank @kaonick , I fixed at: commit #93