8000 GitHub - daidai321/HHA-TFFEM: code for the paper "3D Sensor-based Pedestrian Detection by Integrating Improved HHA Encoding and Two-branch Feature Fusion."
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

code for the paper "3D Sensor-based Pedestrian Detection by Integrating Improved HHA Encoding and Two-branch Feature Fusion."

Notifications You must be signed in to change notification settings

daidai321/HHA-TFFEM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

HHA-TFFEM

code for the paper "3D Sensor-based Pedestrian Detection by Integrating Improved HHA Encoding and Two-branch Feature Fusion."

The code consists of two parts, one is the improved HHA encoding (Improved HHA) , and the other is RGB-D pedestrian detection (RGBD_Detect).

Improved HHA

  1. the code is implemented in the Matlab platform and win10.

  2. depth image and camera intrinsics are used as input.

  3. The algorithm is based on the work "Learning Rich Features from RGB-D Images for Object Detection and Segmentation", and the code also refers to the official code provided by them.

  4. The improved HHA encoding is faster and the encoding results are more consistent. We validate the performance of our HHA encoding method on several RGB-D datasets, including KITTI, EPFL, KTP, and UNIHall. Detailed comparison results can be found in the paper.

RGBD Pedestrain Detection

We proposed a two-branch feature fusion extraction module (TFFEM) to obtain both modalities' local and global features. Based on TFFEM, an RGB-D pedestrian detection network is designed to locate the people, with RGB and HHA images as inputs.

Install dependence

the code is based on the mmdetection. Therefore, the mmdetection is needed to install according to their guidelines. Then replace the mmdet file we provided.

Prepare the dataset

Take the KITTI dataset as an example. First download the dataset and create some directories.

└── KITTI_DATASET_ROOT
       ├── training    <-- 7481 train data
       |   ├── images <-- (image_2)
       |   ├── hha
       |   ├── labels <-- (label_2)
       └── testing     <-- 7580 test data
           ├── images <-- (image_2)
           ├── hha
           ├── labels <-- (label_2)

The HHA data obtained from the previous section or you can directly download from here (Extraction code:TFFE)

Then create the JSON file and replace it in the mmdetection project.

python createjson.py

train

python train.py

About

code for the paper "3D Sensor-based Pedestrian Detection by Integrating Improved HHA Encoding and Two-branch Feature Fusion."

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0