Skip to content

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

Folders and files

NameName
Last commit message
Last commit date
Sep 9, 2018
Sep 9, 2018
Sep 19, 2018
Sep 19, 2018
Sep 19, 2018
Sep 19, 2018
Sep 18, 2018
Sep 19, 2018
Sep 9, 2018
Sep 9, 2018
Sep 9, 2018
Sep 17, 2018
Sep 9, 2018
Sep 9, 2018
Sep 9, 2018
Sep 9, 2018
Sep 19, 2018

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages