BiSeNet based on pytorch
Download CamVid dataset from Semantic-Segmentation-Suite
Thanks GeorgeSeif for his great job!
Download epoch_295.pth
in GoogleDrive and put it in ./checkpoints
python demo.py
Original | GT | Predict |
---|---|---|
python train.py
Use tensorboard to see the real-time loss and accuracy
python test.py
Method | Cropped | Resized |
---|---|---|
Pixel Accuracy | 94.1 | 93.2 |
Cropped and Resized means two image processing method to make the input image size fixed, it seems like Cropped input images get better result. I guess it's because cropped masks keep the original ground truth information while resized loss it.
- Finish real-time segmentation with camera or pre-load video
- Update pixel accuracy calculation algorithm