WangChao 39934f60df 综合 - init git | 2 years ago | |
---|---|---|
.. | ||
.vscode | 2 years ago | |
data_augmentor | 2 years ago | |
dataprocessor | 2 years ago | |
evaluation | 2 years ago | |
experiment | 2 years ago | |
model | 2 years ago | |
plotter | 2 years ago | |
results | 2 years ago | |
smartdoc_data_processor | 2 years ago | |
trainer | 2 years ago | |
utils | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
corner_data_generator.py | 2 years ago | |
demo.py | 2 years ago | |
document_data_generator.py | 2 years ago | |
evaluate.py | 2 years ago | |
mobile_model_converter.py | 2 years ago | |
requirements.txt | 2 years ago | |
self_collected_dataset_preprocess.py | 2 years ago | |
sythetic_doc.py | 2 years ago | |
train_model.py | 2 years ago | |
train_model.sh | 2 years ago | |
train_seg_model.py | 2 years ago |
Paper available at : www.ualberta.ca/~kjaved
This is a new and slightly improved implementation of the paper (Improved in the sense that the code is better commented and structured, and is more extendable to new models). If you are interested in the Tensorflow implementation which was used in the paper, please checkout the "server_branch" branch of this repository.
To prepare the smartdoc dataset for training, run the following command:
python video_to_image.py --d ../path_to_smartdoc_videos/ --o ../path_to_store_frames
here the script video_to_image.py is in the smartdoc_data_processor folder.
After converting to videos to frames, we need to convert the data into format required to train the models. We have to train two models. One to detect the four document corners, and the other to detect the a corner point in an image. To prepare data for the first model, run:
python document_data_generator.py --d ../path_to_store_frames/ --o ../path_to_train_set
and for the second model, run:
python corner_data_generator.py --i ../path_to_store_frames/ --o ../path_to_corner_train_set
You can also download a version of this data in the right format from here: https://drive.google.com/drive/folders/1N9M8dHIMt6sQdoqZ8Y66EJVQSaBTq9cX?usp=sharing
Now we can use the data to train our models. To train the document detector (The model that detects 4 corners), run:
python train_model.py --name NameOfExperiment -i pathToTrainSet1 pathToTrainSet2
--lr 0.5 --schedule 20 30 35 -v pathToValidationSet --batch-size 16
--model-type resnet --loader ram
And to train the corner refiner model, simple specify "--dataset corner" in the above command.
The results of the experiments will be stored in "../DDMMYYYY/NameOfExperiment." You can also specify the output directory using the --output-dir parameter.
Note that you can use multiple datasets by providing a list in -i parameter. Finally, the --loader parameter specifies if the data is loaded in ram initially or not (Supported options are "hdd" or "ram"). If you have enough memory, it's better to load the data in ram (Otherwise the hard-drive can be a bottleneck).
You can evaluate the performance of the code using evaluate.py file. For evaluation, For now, you will have to hardcode the model state dictionary in the evaluate.py script. Also make sure that the correct version of the model is loaded by changing model type in evaluation/corner_extractor.py and evaluation/corner_refiner.py. I'll shift to a better, parameter based approach soon.
Email : kjaved@ualberta.ca in-case of any queries.
A version of trained models can be downloaded from : https://drive.google.com/drive/folders/1N9M8dHIMt6sQdoqZ8Y66EJVQSaBTq9cX
To those working on this problem, I would encourage trying out fully connected neural networks (Or some variant of pixel level segmentation network) as well; in my limited experiments, they are able to out-perform my method quite easily, and are more robust to unseen backgrounds (Probably because they are able to utilize context information of the whole page when making the prediction). They do tend to be a bit slower and require more memory though (Because a high-res image is used as input.) I might release my implemented of FCN based detector soon as well depending on my schedule.
If you end up using our code or dataset in your research, please consider citing:
@inproceedings{javed2017real,
title={Real-Time Document Localization in Natural Images by Recursive Application of a CNN},
author={Javed, Khurram and Shafait, Faisal},
booktitle={Document Analysis and Recognition (ICDAR), 2017 14th IAPR International Conference on},
volume={1},
pages={105--110},
year={2017},
organization={IEEE}
}
[1] S.A. Abbas and S.U.Hussain "Recovering Homography from Camera Captured Documents using Convolutional
Neural Networks."