-
-
Save Coderx7/cb3da113a46a1e4fbc5dbbd3eb402ccb to your computer and use it in GitHub Desktop.
Caffe feature extractor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#in the name of Allah, the most compassionate the most merciful | |
#run this scrip under python2. python3 would work, but not prefectly. e.g. running this script and setting oversample to true in | |
#net.predict([input_image], oversample=True) will cause a crash. but it works just fine under python2. | |
import numpy as np | |
import os, sys, getopt | |
# Main path to your caffe installation | |
caffe_root = '/path/to/your/caffe/' | |
# Model prototxt file | |
model_prototxt = caffe_root + 'models/bvlc_googlenet/deploy.prototxt' | |
# Model caffemodel file | |
model_trained = caffe_root + 'models/bvlc_googlenet/bvlc_googlenet.caffemodel' | |
# File containing the class labels | |
imagenet_labels = caffe_root + 'data/ilsvrc12/synset_words.txt' | |
# Path to the mean image (used for input processing) | |
mean_path = caffe_root + 'python/caffe/imagenet/ilsvrc_2012_mean.npy' | |
# Name of the layer we want to extract | |
layer_name = 'pool5/7x7_s1' | |
sys.path.insert(0, caffe_root + 'python') | |
import caffe | |
def main(argv): | |
inputfile = '' | |
outputfile = '' | |
try: | |
opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) | |
except getopt.GetoptError: | |
print 'caffe_feature_extractor.py -i <inputfile> -o <outputfile>' | |
sys.exit(2) | |
for opt, arg in opts: | |
if opt == '-h': | |
print 'caffe_feature_extractor.py -i <inputfile> -o <outputfile>' | |
sys.exit() | |
elif opt in ("-i"): | |
inputfile = arg | |
elif opt in ("-o"): | |
outputfile = arg | |
print 'Reading images from "', inputfile | |
print 'Writing vectors to "', outputfile | |
# Setting this to CPU, but feel free to use GPU if you have CUDA installed | |
caffe.set_mode_cpu() | |
# Loading the Caffe model, setting preprocessing parameters | |
net = caffe.Classifier(model_prototxt, model_trained, | |
mean=np.load(mean_path).mean(1).mean(1), | |
channel_swap=(2,1,0), | |
raw_scale=255, | |
image_dims=(256, 256)) | |
# Loading class labels | |
with open(imagenet_labels) as f: | |
labels = f.readlines() | |
# This prints information about the network layers (names and sizes) | |
# You can uncomment this, to have a look inside the network and choose which layer to print | |
#print [(k, v.data.shape) for k, v in net.blobs.items()] | |
#exit() | |
# Processing one image at a time, printint predictions and writing the vector to a file | |
with open(inputfile, 'r') as reader: | |
with open(outputfile, 'w') as writer: | |
writer.truncate() | |
for image_path in reader: | |
image_path = image_path.strip() | |
input_image = caffe.io.load_image(image_path) | |
prediction = net.predict([input_image], oversample=False) | |
print os.path.basename(image_path), ' : ' , labels[prediction[0].argmax()].strip() , ' (', prediction[0][prediction[0].argmax()] , ')' | |
np.savetxt(writer, net.blobs[layer_name].data[0].reshape(1,-1), fmt='%.8g') | |
if __name__ == "__main__": | |
main(sys.argv[1:]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment