Tensorflow implementation of Fast R-CNN.
http://www.rossgirshick.info/
Using 17 Category Flower Dataset.
http://www.robots.ox.ac.uk/~vgg/data/flowers/17/
Fast R-CNN
Ross Girshick
IEEE International Conference on Computer Vision (ICCV), 2015
python TrainingModel.py train_data_file finetune_data_file
output_cnn_model_file output_cnn_mean_file
ex)
python TrainingModel.py ./data/train_data.txt ./data/finetune_data.txt
./alexnet/alexnet_model.npy ./alexnet/alexnet_mean.txt
python DetectionImage.py cnn_model_file cnn_mean_file
label_file input_image_file output_image_file
ex)
python DetectionImage.py ./alexnet/alexnet_model.npy ./alexnet/alexnet_mean.txt
./alexnet/flower_classes.txt ./example/tulip.jpg ./example/tulip_result.jpg