├── .gitignore ├── .gitmodules ├── CodDataset ├── cod_dataset.json ├── cod_method.json ├── test.txt └── train.txt ├── Image ├── CRNet.jpg ├── EvalTable.png └── network.pdf ├── LICENSE ├── README.md ├── data ├── __init__.py ├── dataset.py └── transform.py ├── feature_loss.py ├── lib ├── __init__.py └── data_prefetcher.py ├── net.py ├── requirements.txt ├── test.py ├── tools.py ├── train.py ├── train_processes.py └── utils └── ramps.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/.gitmodules -------------------------------------------------------------------------------- /CodDataset/cod_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/CodDataset/cod_dataset.json -------------------------------------------------------------------------------- /CodDataset/cod_method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/CodDataset/cod_method.json -------------------------------------------------------------------------------- /CodDataset/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/CodDataset/test.txt -------------------------------------------------------------------------------- /CodDataset/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/CodDataset/train.txt -------------------------------------------------------------------------------- /Image/CRNet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/Image/CRNet.jpg -------------------------------------------------------------------------------- /Image/EvalTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/Image/EvalTable.png -------------------------------------------------------------------------------- /Image/network.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/Image/network.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/data/dataset.py -------------------------------------------------------------------------------- /data/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/data/transform.py -------------------------------------------------------------------------------- /feature_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/feature_loss.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/data_prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/lib/data_prefetcher.py -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/net.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/test.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/tools.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/train.py -------------------------------------------------------------------------------- /train_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/train_processes.py -------------------------------------------------------------------------------- /utils/ramps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddraxxx/Weakly-Supervised-Camouflaged-Object-Detection-with-Scribble-Annotations/HEAD/utils/ramps.py --------------------------------------------------------------------------------