├── LICENSE ├── README.md ├── classification.py ├── classification_module.py ├── datasets ├── classification_datasets.py └── gen1_od_dataset.py ├── figure.png ├── models ├── SSD_utils.py ├── detection_backbone.py ├── detection_head.py ├── detection_neck.py ├── detection_pyramid.py ├── spiking_densenet.py └── utils.py ├── object_detection.py ├── object_detection_module.py └── prophesee_utils ├── io ├── __init__.py ├── dat_events_tools.py ├── npy_events_tools.py └── psee_loader.py └── metrics ├── __init__.py └── coco_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/README.md -------------------------------------------------------------------------------- /classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/classification.py -------------------------------------------------------------------------------- /classification_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/classification_module.py -------------------------------------------------------------------------------- /datasets/classification_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/datasets/classification_datasets.py -------------------------------------------------------------------------------- /datasets/gen1_od_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/datasets/gen1_od_dataset.py -------------------------------------------------------------------------------- /figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/figure.png -------------------------------------------------------------------------------- /models/SSD_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/SSD_utils.py -------------------------------------------------------------------------------- /models/detection_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/detection_backbone.py -------------------------------------------------------------------------------- /models/detection_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/detection_head.py -------------------------------------------------------------------------------- /models/detection_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/detection_neck.py -------------------------------------------------------------------------------- /models/detection_pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/detection_pyramid.py -------------------------------------------------------------------------------- /models/spiking_densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/spiking_densenet.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/models/utils.py -------------------------------------------------------------------------------- /object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/object_detection.py -------------------------------------------------------------------------------- /object_detection_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/object_detection_module.py -------------------------------------------------------------------------------- /prophesee_utils/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prophesee_utils/io/dat_events_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/prophesee_utils/io/dat_events_tools.py -------------------------------------------------------------------------------- /prophesee_utils/io/npy_events_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/prophesee_utils/io/npy_events_tools.py -------------------------------------------------------------------------------- /prophesee_utils/io/psee_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/prophesee_utils/io/psee_loader.py -------------------------------------------------------------------------------- /prophesee_utils/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prophesee_utils/metrics/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yimeng-fan/SFOD/HEAD/prophesee_utils/metrics/coco_utils.py --------------------------------------------------------------------------------