转自:http://docs.opencv.org/trunk/d5/de7/tutorial_dnn_googlenet.html
In this tutorial you will learn how to use opencv_dnn module for image classification by using GoogLeNet trained network from Caffe model zoo.
We will demonstrate results of this example on the following picture.
We will be using snippets from the example application, that can be downloaded here.
Firstly, download GoogLeNet model files: bvlc_googlenet.prototxt and bvlc_googlenet.caffemodel
Also you need file with names of ILSVRC2012 classes: synset_words.txt.
Put these files into working dir of this program example.
Read input image and convert to the blob, acceptable by GoogleNet
Firstly, we resize the image and change its channel sequence order.
Now image is actually a 3-dimensional array with 224x224x3 shape.
Next, we convert the image to 4-dimensional blob (so-called batch) with 1x3x224x224 shape by using special cv::dnn::blobFromImages constructor.
Pass the blob to the network
In bvlc_googlenet.prototxt the network input blob named as "data", therefore this blob labeled as ".data" in opencv_dnn API.
Other blobs labeled as "name_of_layer.name_of_layer_output".
prob
blob. And find the index of element with maximal value in this one. This index correspond to the class of the image.Best class: #812 'space shuttle'
Probability: 99.6378%