This is an unofficial PyTorch implementation of Composing Photos Like a Photographer, in which the anchor-point regressors is based on Anchor-to-Joint Regression Network and more details about this can be found in their paper & code.
-
Download code and model.
# Clone this repository git clone https://github.com/bo-zhang-cs/CACNet-Pytorch.git cd CACNet-Pytorch && mkdir pretrained_model
Download the Image Cropping Model (~75MB) from [Google Drive] to the folder
pretrained_model
. -
Inference on a single image:
python demo.py -i ${image_path} -o ${save_folder} # For example python demo.py -i tests/raw/302166.jpg -o tests/results/
Or on an image folder:
python demo.py -i ${image_folder} -o tests/results/ # For example python demo.py -i tests/raw -o tests/results/
After that, you can find the cropped images in
tests/results
. The raw and processed images are shown below:
Test set | FCDB | FLMS | KU-PCP |
---|---|---|---|
Original Paper | IoU=0.718 BDE=0.069 | IoU=0.854 BDE=0.033 | Accuracy=88.2% |
This code | IoU=0.702 BDE=0.074 | IoU=0.841 BDE=0.037 | Accuracy=88.4% |
Note that the accuracy is produced training composition classification branch alone.
- KU-PCP [Paper] [Download link].
- FLMS [Download Images] [Download Annotation]
- FCDB [Download link]
- Download these datasets and change the default dataset folder in
config_*.py
. - There are some images that unable to open in KU-PCP dataset, and you can fix this by calling
check_jpg_file
function inKUPCP_dataset.py
.
- PyTorch>=1.0
- torchvision
- tensorboardX
- opencv-python
- tqdm
You can also install packages using pip according to requirements.txt
:
pip install -r requirements.txt
# clone this repository
git clone https://github.com/bo-zhang-cs/CACNet-Pytorch.git
cd CACNet-Pytorch && mkdir pretrained_model
Download pretrained models to the folder pretrained_model
.
- Image Cropping Model (~75MB) [Google Drive] (If you are only interested in the cropping results and not classification results, then only need to download this.)
- Composition Classification Model (~63MB) [Google Drive] (Download this if you want the best accuracy (88.4%) of composition classification.)
python eval.py
This will produce a folder results
where you can find the predicted best crops.
python train_composition_classification.py
python train_image_cropping.py
tensorboard --logdir=./experiments
The model performance for each epoch is also recorded in .csv file under the produced folder ./experiments.
@inproceedings{hong2021composing,
title={Composing Photos Like a Photographer},
author={Hong, Chaoyi and Du, Shuaiyuan and Xian, Ke and Lu, Hao and Cao, Zhiguo and Zhong, Weicai},
booktitle={CVPR},
year={2021}
}