Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCIH committed Jul 21, 2024
1 parent 9062908 commit f01e59a
Showing 1 changed file with 142 additions and 16 deletions.
158 changes: 142 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,142 @@
## Hi there 👋

<!--
**apgcc/APGCC** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.
Here are some ideas to get you started:
- 🔭 I’m currently working on ...
- 🌱 I’m currently learning ...
- 👯 I’m looking to collaborate on ...
- 🤔 I’m looking for help with ...
- 💬 Ask me about ...
- 📫 How to reach me: ...
- 😄 Pronouns: ...
- ⚡ Fun fact: ...
-->
# APGCC: Improving Point-based Crowd Counting and Localization Based on Auxiliary Point Guidance (ECCV)

Official repository for RobustSAM: Segment Anything Robustly on Degraded Images

[Project Page](https://apgcc.github.io/) | [Paper](https://arxiv.org/abs/2405.10589) | [Video](https://www.youtube.com/watch?v=b_ltwfD9dLI&embeds_referring_euri=https%3A%2F%2Fapgcc.github.io%2F&source_ve_path=Mjg2NjY) | [Code](https://github.com/AaronCIH/APGCC/tree/main/apgcc)

## Updates
- July 2024: ✨ Inference code has been released!

## Introduction
Crowd counting and localization have become increasingly important in computer vision due to their wide-ranging applications. While point-based strategies have been widely used in crowd counting methods, they face a significant challenge, i.e., the lack of an effective learning strategy to guide the matching process. This deficiency leads to instability in matching point proposals to target points, adversely affecting overall performance. To address this issue, we introduce an effective approach to stabilize the proposal-target matching in point-based methods.

We propose Auxiliary Point Guidance (APG) to provide clear and effective guidance for proposal selection and optimization, addressing the core issue of matching uncertainty. Additionally, we develop Implicit Feature Interpolation (IFI) to enable adaptive feature extraction in diverse crowd scenarios, further enhancing the model's robustness and accuracy. Extensive experiments demonstrate the effectiveness of our approach, showing significant improvements in crowd counting and localization performance, particularly under challenging conditions.

<img width="1096" alt="image" src='figures/model_Arch.jpg'>

## Setup
1) Create a conda environment and activate it.
```
conda create --name apgcc python=3.8 -y
conda activatre apgcc
```
2) Clone and enter into repo directory.
```
git clone https://github.com/AaronCIH/APGCC.git
cd APGCC
```
3) Install remaining dependencies
```
pip install -r requirements.txt
```
4) Download pretrained APGCC checkpoints and place them into current directory.
-[SHHA APGCC checkpoint](https://drive.google.com/file/d/1pEvn5RrvmDqVJUDZ4c9-rCJcl2I7bRhu/view?usp=sharing)
```
cd apgcc
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=1pEvn5RrvmDqVJUDZ4c9-rCJcl2I7bRhu' -O ./output/SHHA_best.pth
```

## Prepare Dataset
We utilize a list file to collect all the imageas and the corresponding ground truth point annotations in a counting dataset. Please see this [page](https://github.com/gjy3035/Awesome-Crowd-Counting/blob/master/src/Datasets.md) to download the dataset, and then use the below command to create the data list.
```
cd apgcc
python pre_process_label.py $[src_path] $[dataset] $[output_path]
```
where $\[src_path\] is the dataset path, $\[dataset\] is the dataset name (e.g., 'SHHA', 'SHHB', 'NWPU'), and the $\[output_path\] specify the output folder.
### Data Structures:
```
DATA_ROOT/
|->train/
| |->scene01/
| |->scene02/
| |->...
|->test/
| |->scene01/
| |->scene02/
| |->...
|->train.list
|->test.list
```
DATA_ROOT is the path containing the counting datasets.

### Annotations Format:
```
x1 y1
x2 y2
...
```

## Inference
- For SHHA dataset:
```
cd apgcc
bash test.sh
```
In default, the results will be saved to "./output/", and you can customize the inference by the command.
```
python main.py -t -c $[config] TEST.WEIGHT $[checkpoint] OUTPUT_DIR $[output path] TEST.THRESHOLD $[threshold]
```
where $\[config\] specifies the initial configuration and defaults as "./configs/SHHA_test.yml", $\[checkpoint\] is your pretrained checkpoint, $\[output path\] specifies the output folder, and $\[threshold\] can filter different confidence levels. The more configure instruction please see the "./configs/SHHA_test.yml" files.

## Performance
<table>
<tr>
<td>
<img width="380" alt="image" src='figures/teaser3.jpg'>
</td>
<td>
<img width="380" alt="image" src='figures/teaser4.jpg'>
</td>
</tr>
</table>

## Visual Comparison
<table>
<tr>
<td>
<img src="figures/teaser1.gif" width="380">
</td>
<td>
<img src="figures/teaser2.gif" width="380">
</td>
</tr>
</table>

## Quantitative Comparison
### Evaluation on Crowd Counting
<img width="720" alt="image" src='figures/exp_count_all.png'>
<table>
<tr>
<td>
<img width="380" alt="image" src='figures/exp_count_cc.png'>
</td>
<td>
<img width="380" alt="image" src='figures/exp_count_nwpu.png'>
</td>
</tr>
</table>

### Evaluation on Crowd Localization
<table>
<tr>
<td>
<img width="380" alt="image" src='figures/exp_loc_nwpu.png'>
</td>
<td>
<img width="380" alt="image" src='figures/exp_loc_shha.png'>
</td>
</tr>
</table>

## Reference
If you find this work useful, please consider citing us!
```python
@article{chen2024improving,
title={Improving Point-based Crowd Counting and Localization Based on Auxiliary Point Guidance},
author={Chen, I and Chen, Wei-Ting and Liu, Yu-Wei and Yang, Ming-Hsuan and Kuo, Sy-Yen},
journal={arXiv preprint arXiv:2405.10589},
year={2024}
}
```


0 comments on commit f01e59a

Please sign in to comment.