sirius-mhlee / object-detection-using-tensorflow-fast-rcnn

Tensorflow implementation of Fast R-CNN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Object Detection using Tensorflow Fast R-CNN

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

Training Usage

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

Training Result

train_result.jpg

Detection Usage

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

Detection Result

About

Tensorflow implementation of Fast R-CNN


Languages

Language:Python 100.0%