Note: I made changes to be able to generate edge maps for imagenet datasets downloaded with this tool - https://github.com/mf1024/ImageNet-Datasets-Downloader. It only outputs edge maps (the png files) in a single directory. Essentially now , you point it to the directory of your imagenet dataset using the argument "--dataset image_dataset" and it spits out all the edge maps in the dataset in a single separate folder. The edge maps have the same names as the imagenet images but are png files. I did this so i could more easily replicate this paper - https://sketch-guided-diffusion.github.io/
Change --dataset Custom to --dataset image_dataset
This repository contains the PyTorch implementation for "Pixel Difference Networks for Efficient Edge Detection" by Zhuo Su*, Wenzhe Liu*, Zitong Yu, Dewen Hu, Qing Liao, Qi Tian, Matti Pietikäinen and Li Liu** (* Authors have equal contributions, ** Corresponding author). [arXiv, youtube]
The writing style of this code is based on Dynamic Group Convolution.
If you find something useful from our work, please consider citing our paper.
🚀 Updates:
Dec. 29, 2021
: Add functions with vanilla conv components in models/ops_theta.pyAug. 18, 2021
: Load checkpoints in trained_models
Training: Pytorch 1.9 with cuda 10.1 and cudnn 7.5 in an Ubuntu 18.04 system
Evaluation: Matlab 2019a
Ealier versions may also work~ :)
We use the links in RCF Repository (really thanks for that). The augmented BSDS500, PASCAL VOC, and NYUD datasets can be downloaded with:
wget http://mftp.mmcheng.net/liuyun/rcf/data/HED-BSDS.tar.gz
wget http://mftp.mmcheng.net/liuyun/rcf/data/PASCAL.tar.gz
wget http://mftp.mmcheng.net/liuyun/rcf/data/NYUD.tar.gz
To create BSDS dataset, please follow:
- create a folder /path/to/BSDS500,
- extract HED-BSDS.tar.gz to /path/to/BSDS500/HED-BSDS,
- extract PASCAL.tar.gz to /path/to/BSDS500/PASCAL,
- if you want to evaluate on BSDS500 val set, the val images can be downloaded from this link, please extract it to /path/to/BSDS500/HED-BSDS/val,
- cp the *.lst files in data/BSDS500/HED-BSDS to /path/to/BSDS500/HED-BSDS/, cp the *.lst files in data/BSDS500 to /path/to/BSDS500/.
To create NYUD dataset, please follow:
- create a folder /path/to/NYUD,
- extract NYUD.tar.gz to /path/to/NYUD,
- cp the *.lst files in data/NYUD to /path/to/NYUD/.
Here we provide the scripts for training the models appeared in the paper. For example, we refer to the PiDiNet
model in Table 5 in the paper as table5_pidinet
.
table5_pidinet
# train, the checkpoints will be save in /path/to/table5_pidinet/save_models/ during training
python main.py --model pidinet --config carv4 --sa --dil --resume --iter-size 24 -j 4 --gpu 0 --epochs 20 --lr 0.005 --lr-type multistep --lr-steps 10-16 --wd 1e-4 --savedir /path/to/table5_pidinet --datadir /path/to/BSDS500 --dataset BSDS
# generating edge maps using the original model
python main.py --model pidinet --config carv4 --sa --dil -j 4 --gpu 0 --savedir /path/to/table5_pidinet --datadir /path/to/BSDS500 --dataset BSDS --evaluate /path/to/table5_pidinet/save_models/checkpointxxx.pth
# generating edge maps using the converted model, it should output the same results just like using the original model
# the process will convert pidinet to vanilla cnn, using the saved checkpoint
python main.py --model pidinet_converted --config carv4 --sa --dil -j 4 --gpu 0 --savedir /path/to/table5_pidinet --datadir /path/to/BSDS500 --dataset BSDS --evaluate /path/to/table5_pidinet/save_models/checkpointxxx.pth --evaluate-converted
# test FPS on GPU
python throughput.py --model pidinet_converted --config carv4 --sa --dil -j 1 --gpu 0 --datadir /path/to/BSDS500 --dataset BSDS
It is similar for other models, please see detailed scripts in scripts.sh.
The performance of some of the models are listed below (click the items to download the checkpoints and training logs). FPS metrics are tested on a NVIDIA RTX 2080 Ti, showing slightly faster than that recorded in the paper (you probably get different FPS records in different runs, but they will not vary too much):
Model | ODS | OIS | FPS | Training logs |
---|---|---|---|---|
table5_baseline | 0.798 | 0.816 | 101 | log |
table5_pidinet | 0.807 | 0.823 | 96 | log, running log |
table5_pidinet-l | 0.800 | 0.815 | 135 | log |
table5_pidinet-small | 0.798 | 0.814 | 161 | log |
table5_pidinet-small-l | 0.793 | 0.809 | 225 | log |
table5_pidinet-tiny | 0.789 | 0.806 | 182 | log |
table5_pidinet-tiny-l | 0.787 | 0.804 | 253 | log |
table6_pidinet | 0.733 | 0.747 | 66 | log, running_log |
table7_pidinet | 0.818 | 0.824 | 17 | log, running_log |
The matlab code used for evaluation in our experiments can be downloaded in matlab code for evaluation.
Possible steps:
- extract the downloaded file to /path/to/edge_eval_matlab,
- change the first few lines (path settings) in eval_bsds.m, eval_nyud.m, eval_multicue.m for evaluating the three datasets respectively,
- in a terminal, open Matlab like
matlab -nosplash -nodisplay -nodesktop
# after entering the Matlab environment,
>>> eval_bsds
- you could change the number of works in parpool in /path/to/edge_eval_matlab/toolbox.badacost.public/matlab/fevalDistr.m in line 100. The default value is 16.
For evaluating NYUD, following RCF, we increase the localization tolerance from 0.0075 to 0.011. The Matlab code is based on the following links:
Please follow plot-edge-pr-curves, files for plotting pr curves of PiDiNet are provided in pidinet_pr_curves.
python main.py --model pidinet_converted --config carv4 --sa --dil -j 4 --gpu 0 --savedir /path/to/savedir --datadir /path/to/custom_images --dataset Custom --evaluate /path/to/table5_pidinet/save_models/checkpointxxx.pth --evaluate-converted