├── README.md ├── data.py ├── data_aug.m ├── image ├── SeaNet.png └── table.png ├── model ├── MobileNetV2.py ├── SeaNet_models.py └── __init__.py ├── models ├── SeaNet_EORSSD.pth.50 ├── SeaNet_ORSSD.pth.50 ├── SeaNet_RSI_4199.pth.50 └── saliency_maps.zip ├── pytorch_iou ├── __init__.py ├── __init__.pyc └── __pycache__ │ └── __init__.cpython-36.pyc ├── test_SeaNet.py ├── train_SeaNet.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/data.py -------------------------------------------------------------------------------- /data_aug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/data_aug.m -------------------------------------------------------------------------------- /image/SeaNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/image/SeaNet.png -------------------------------------------------------------------------------- /image/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/image/table.png -------------------------------------------------------------------------------- /model/MobileNetV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/model/MobileNetV2.py -------------------------------------------------------------------------------- /model/SeaNet_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/model/SeaNet_models.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/SeaNet_EORSSD.pth.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/models/SeaNet_EORSSD.pth.50 -------------------------------------------------------------------------------- /models/SeaNet_ORSSD.pth.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/models/SeaNet_ORSSD.pth.50 -------------------------------------------------------------------------------- /models/SeaNet_RSI_4199.pth.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/models/SeaNet_RSI_4199.pth.50 -------------------------------------------------------------------------------- /models/saliency_maps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/models/saliency_maps.zip -------------------------------------------------------------------------------- /pytorch_iou/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/pytorch_iou/__init__.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/pytorch_iou/__init__.pyc -------------------------------------------------------------------------------- /pytorch_iou/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/pytorch_iou/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test_SeaNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/test_SeaNet.py -------------------------------------------------------------------------------- /train_SeaNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/train_SeaNet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/SeaNet/HEAD/utils.py --------------------------------------------------------------------------------