This is an implementation of "Stabilizing Multispectral Pedestrian Detection with Evidential Hybrid Fusion" based on MindSpore.
This repository aims to provide a comprehensive detection process based on MindSpore for multispectral pedestrian detection, making it the first of its kind. We encourage everyone to collaborate and contribute towards the continuous improvement and maintenance of this code.
You can execute this command to create a conda environment for this repository.
conda env create -f smpd_mindspore.yaml
Note: Please go to the official website [link] to install MindSpore for use on Ascend or GPU.
-
You can directly download the model parameters at smpd_mindspore.ckpt.
-
Add the path of model parameters to the variable
load_name
in the filedetector.py
. -
Download data Kaist, and add the path of data to the variable
self._pic_path
in the filekaist.py
. -
To test on kaist, simply run:
python detector.py --dataset kaist --net vgg16 --reasonable
Note: Due to different implementations of RoIPooling operations, the results may differ slightly from those based on other frameworks. We have tested and found that the results of other operations are strictly consistent.