caffeのpythonインタフェース実戦:detection公式チュートリアルソース解析

15575 ワード

本文は公式ドキュメントのソースコード解析ノートシリーズの一つである.
注1:本文の内容はcaffe_に属するroot/example/下のipynbファイルのソースコード解析は、ソースコード注釈を通じて初心者の学習プロセスを加速させることを目的としています.注2:以下の解析では、各部分の英語注釈を翻訳していません.初心者に、オリジナルの英語のチュートリアルに適応して読むべきだと警告することを目的としています.これは、自分の技術文献を読む能力を高めるのに役立ち、高級プログラマーの必須の素養でもあります.注3:jupyter nootebook環境でソースコメントと組み合わせてプログラムを実行することをお勧めします.
R-CNN is a state-of-the-art detector that classifies region proposals by a finetuned Caffe model. For the full details of the R-CNN system and model, refer to its project site and the paper:
Rich feature hierarchies for accurate object detection and semantic segmentation. Ross Girshick, Jeff Donahue, Trevor Darrell, Jitendra Malik. CVPR 2014. Arxiv 2013.
In this example, we do detection by a pure Caffe edition of the R-CNN model for ImageNet. The R-CNN detector outputs class scores for the 200 detection classes of ILSVRC13. Keep in mind that these are raw one vs. all SVM scores, so they are not probabilistically calibrated or exactly comparable across classes. Note that this off-the-shelf model is simply for convenience, and is not the full R-CNN model.
Let’s run detection on an image of a bicyclist riding a fish bike in the desert (from the ImageNet challenge—no joke).
First, we’ll need region proposals and the Caffe R-CNN ImageNet model:
  • Selective Search is the region proposer used by R-CNN. The selective_search_ijcv_with_python Python module takes care of extracting proposals through the selective search MATLAB implementation. To install it, download the module and name its directory selective_search_ijcv_with_python , run the demo in MATLAB to compile the necessary functions, then add it to your PYTHONPATH for importing. (If you have your own region proposals prepared, or would rather not bother with this step, detect.py accepts a list of images and bounding boxes as CSV.)

  • -Run ./scripts/download_model_binary.py models/bvlc_reference_rcnn_ilsvrc13 to get the Caffe R-CNN ImageNet model.
    With that done, we’ll call the bundled detect.py to generate the region proposals and run the network. For an explanation of the arguments, do ./detect.py --help .
    !mkdir -p _temp #       ,       
    !echo `pwd`/images/fish-bike.jpg > _temp/det_input.txt
    !../python/detect.py --crop_mode=selective_search --pretrained_model=../models/bvlc_reference_rcnn_ilsvrc13/bvlc_reference_rcnn_ilsvrc13.caffemodel --model_def=../models/bvlc_reference_rcnn_ilsvrc13/deploy.prototxt --gpu --raw_scale=255 _temp/det_input.txt _temp/det_output.h5

    This run was in GPU mode. For CPU mode detection, call detect.py without the --gpu argument.
    Running this outputs a DataFrame with the filenames, selected windows, and their detection scores to an HDF5 file. (We only ran on one image, so the filenames will all be the same.)
    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
    %matplotlib inline
    # df 1570*5 dataframe,      :             prediction(200     ),ymin ,xmin ,ymax    xmax
    #df.prediction.values 1570*200  
    df = pd.read_hdf('_temp/det_output.h5', 'df') #
    print(df.shape)
    print(df.iloc[0])

    1570 regions were proposed with the R-CNN configuration of selective search. The number of proposals will vary from image to image based on its contents and size – selective search isn’t scale invariant.
    In general, detect.py is most efficient when running on a lot of images: it first extracts window proposals for all of them, batches the windows for efficient GPU processing, and then outputs the results. Simply list an image per line in the images_file , and it will process all of them.
    Although this guide gives an example of R-CNN ImageNet detection, detect.py is clever enough to adapt to different Caffe models’ input dimensions, batch size, and output categories. You can switch the model definition and pretrained model as desired. Refer to python detect.py --help for the parameters to describe your data set. There’s no need for hardcoding.
    Anyway, let’s now load the ILSVRC13 detection class names and make a DataFrame of the predictions. Note you’ll need the auxiliary ilsvrc2012 data fetched by data/ilsvrc12/get_ilsvrc12_aux.sh .
    with open('../data/ilsvrc12/det_synset_words.txt') as f:
        labels_df = pd.DataFrame([
            {
                'synset_id': l.strip().split(' ')[0],  #synset_id    
                'name': ' '.join(l.strip().split(' ')[1:]).split(',')[0]  #name                      。
            }
            for l in f.readlines()
        ])
    #   dataframe    200     ,          ,    dataframe      
    labels_df.sort('synset_id') # id      ,       dataframe
    predictions_df = pd.DataFrame(np.vstack(df.prediction.values), columns=labels_df['name']) #df.prediction.values 1570*200  ,
    print(predictions_df.iloc[0]) #   0     ,      ,    ,           ,  1*200  

    Let’s look at the activations.
    plt.gray()
    plt.matshow(predictions_df.values) #value          ,mat 1570*200
    plt.xlabel('Classes')
    plt.ylabel('Windows') #1570          ,           200   

    Now let’s take max across all windows and plot the top classes.
    max_s = predictions_df.max(0) #prediction_df.values 1570*200     ,                         name  
    max_s.sort(ascending=False)
    print(max_s[:10])

    The top detections are in fact a person and bicycle. Picking good localizations is a work in progress; we pick the top-scoring person and bicycle detections.
    # Find, print, and display the top detections: person and bicycle.
    i = predictions_df['person'].argmax()   #1570*1   ,    name         
    j = predictions_df['bicycle'].argmax() #  
    
    # Show top predictions for top detection.
    # df 1570*5 dataframe,      :             prediction(200     ),ymin ,xmin ,ymax    xmax
    #df.prediction.values 1570*200  
    f = pd.Series(df['prediction'].iloc[i], index=labels_df['name']) #       prediction                 
    print('Top detection:')
    print(f.order(ascending=False)[:5]) #            
    print('')
    
    # Show top predictions for second-best detection.
    f = pd.Series(df['prediction'].iloc[j], index=labels_df['name'])
    print('Second-best detection:')
    print(f.order(ascending=False)[:5])
    
    # Show top detection in red, second-best top detection in blue.
    im = plt.imread('images/fish-bike.jpg')
    plt.imshow(im)
    currentAxis = plt.gca()
    
    det = df.iloc[i]
    coords = (det['xmin'], det['ymin']), det['xmax'] - det['xmin'], det['ymax'] - det['ymin'] #plt   ,   0      
    currentAxis.add_patch(plt.Rectangle(*coords, fill=False, edgecolor='r', linewidth=5))
    
    det = df.iloc[j]
    coords = (det['xmin'], det['ymin']), det['xmax'] - det['xmin'], det['ymax'] - det['ymin']
    currentAxis.add_patch(plt.Rectangle(*coords, fill=False, edgecolor='b', linewidth=5))

    That’s cool. Let’s take all ‘bicycle’ detections and NMS them to get rid of overlapping windows.
    def nms_detections(dets, overlap=0.3):
        """
        Non-maximum suppression: Greedily select high-scoring detections and
        skip detections that are significantly covered by a previously
        selected detection.
    
        This version is translated from Matlab code by Tomasz Malisiewicz,
        who sped up Pedro Felzenszwalb's code.
    
        Parameters
        ----------
        dets: ndarray
            each row is ['xmin', 'ymin', 'xmax', 'ymax', 'score']
        overlap: float
            minimum overlap ratio (0.3 default)   #              0.3    
    
        Output
        ------
        dets: ndarray
            remaining after suppression.
        """
        x1 = dets[:, 0] #      x1   ,1570*1
        y1 = dets[:, 1]
        x2 = dets[:, 2]
        y2 = dets[:, 3]
        ind = np.argsort(dets[:, 4]) #    1570*1 score      ,         score   , bicycle    
    
        w = x2 - x1
        h = y2 - y1
        area = (w * h).astype(float)  #1570*1    
    
        pick = []
        while len(ind) > 0:
            i = ind[-1]   #          score     
            pick.append(i) #            pick 
            ind = ind[:-1] #        ind   ,             
    
            #                           IOU    , length(ind) IOU  
            xx1 = np.maximum(x1[i], x1[ind]) #                                   ,                
            yy1 = np.maximum(y1[i], y1[ind]) #                                   
            xx2 = np.minimum(x2[i], x2[ind]) #                                   
            yy2 = np.minimum(y2[i], y2[ind]) #                                   
    
            # xx2 - xx1  0,  0
            # yy2 - yy1  0,  0
            w = np.maximum(0., xx2 - xx1) #
            h = np.maximum(0., yy2 - yy1)
    
            wh = w * h
            o = wh / (area[i] + area[ind] - wh) # i    , ind                ,        
    
            ind = ind[np.nonzero(o <= overlap)[0]] #                  ,                      !!,        
    
        return dets[pick, :]
    scores = predictions_df['bicycle'] #  1570     ,bicycle    1057*1     
    windows = df[['xmin', 'ymin', 'xmax', 'ymax']].values
    dets = np.hstack((windows, scores[:, np.newaxis])) #         ,  each row is ['xmin', 'ymin', 'xmax', 'ymax', 'score']   ndarray
    #
    nms_dets = nms_detections(dets) #          ,      ,                        

    Show top 3 NMS’d detections for ‘bicycle’ in the image and note the gap between the top scoring box (red) and the remaining boxes.
    plt.imshow(im)
    currentAxis = plt.gca()#    figure             
    colors = ['r', 'b', 'y']
    for c, det in zip(colors, nms_dets[:3]):
        currentAxis.add_patch(
            plt.Rectangle((det[0], det[1]), det[2]-det[0], det[3]-det[1],
            fill=False, edgecolor=c, linewidth=5)
        )
    print 'scores:', nms_dets[:3, 4]

    This was an easy instance for bicycle as it was in the class’s training set. However, the person result is a true detection since this was not in the set for that class.
    You should try out detection on an image of your own next!
    (Remove the temp directory to clean up, and we’re done.)
    !rm -rf _temp