tf-faster-rcnn实战篇

作者: 素娜93 | 来源:发表于2017-07-31 08:51 被阅读3525次

    准备篇:
    TensorFlow:首先查看TensorFlow的版本,代码支持的是1.2的版本:

    import tensorflow as tf
    print tf.__version__
    1.1.0
    

    因此卸载并安装指定版本Tensorflow:

    pip install -I tensorflow==1.2.1
    

    安装:
    1、下载tf-faster-rcnn代码:

    git clone https://github.com/endernewton/tf-faster-rcnn.git
    

    2、到tf-faster-rcnn/lib下编译Cython 模块:
    需要注意:首先根据GPU的型号来修改计算能力(Architecture), 官网提供了5种模型对应的计算能力值,我的机子是Tesla K40,所以这里修改sm_52为sm_35,然后执行下面代码进行编译,否则去重框会出问题

    CUDA.jpeg
    cd tf-faster-rcnn/lib
    make clean
    make
    cd ..
    

    3、安装Python COCO API:

    cd data
    git clone https://github.com/pdollar/coco.git
    cd coco/PythonAPI
    make
    cd ../../..
    

    4、下载模型

    ./data/scripts/fetch_faster_rcnn_models.sh
    

    5、使用预训练模型进行测试

    ./tools/demo.py
    

    但是GPU上跑测试时用ssh进行远程解释器绘图时出错:RuntimeError: Invalid DISPLAY variable, 这时需要修改demo.py文件:

    import matplotlib.pyplot as plt
    plt.switch_backend('agg')
    

    上述是GPU版本测试的方法,如果是基于CPU,还需要对以下几个.py文件进行改动:
    a. tf-faster-rcnn/lib/model/nms_wrapper.py:

    from model.config import cfg
    #from nms.gpu_nms import gpu_nms
    from nms.cpu_nms import cpu_nms
    
    def nms(dets, thresh, force_cpu=False):
      """Dispatch to either CPU or GPU NMS implementations."""
    
      if dets.shape[0] == 0:
        return []
      return cpu_nms(dets, thresh)
      # if cfg.USE_GPU_NMS and not force_cpu:
      #   return gpu_nms(dets, thresh, device_id=0)
      # else:
      #   return cpu_nms(dets, thresh)
    

    b. tf-faster-rcnn/lib/model/config.py: 注释以下代码

    __C.USE_GPU_NMS = False
    

    c. tf-faster-rcnn/lib/setup.py: 注释以下语句

    CUDA = locate_cuda()
    self.src_extensions.append('.cu')
    Extension('nms.gpu_nms',
            ['nms/nms_kernel.cu', 'nms/gpu_nms.pyx'],
            library_dirs=[CUDA['lib64']],
            libraries=['cudart'],
            language='c++',
            runtime_library_dirs=[CUDA['lib64']],
            # this syntax is specific to this build system
            # we're only going to use certain compiler args with nvcc and not with gcc
            # the implementation of this trick is in customize_compiler() below
            extra_compile_args={'gcc': ["-Wno-unused-function"],
                                'nvcc': ['-arch=sm_52',
                                         '--ptxas-options=-v',
                                         '-c',
                                         '--compiler-options',
                                         "'-fPIC'"]},
            include_dirs = [numpy_include, CUDA['include']]
    

    4、运行./tools/demo.py就可以看到结果啦!
    5、当然如果想看到自己的图片的检测结果,将图片放在tf-faster-rcnn/data/demo下,修改源文件demo.py,在im_names下面添加图片的名称即可。

    im_names = ['000456.jpg', '000542.jpg', '001150.jpg',
                    '001763.jpg', '004545.jpg']   
    

    训练:
    1、准备训练数据:数据集需要参考VOC2007的数据集格式,主要包括三个部分:
    JPEGImages:存放用来训练的原始图像,图片编号要以6为数字命名,例如000034.jpg,图片要是JPEG/JPG格式的,图片的长宽比(width/height)要在0.462-6.828之间;
    Annotations :存放原始图像中的Object的坐标信息,一个训练图片对应Annotations下的一个同名的XML文件;
    ImageSets/Main :指定用来train,trainval,val和test的图片的编号,因为VOC的数据集可以做很多的CV任务,比如Object detection, Semantic segementation, Edge detection等,所以Imageset下有几个子文件夹(Layout, Main, Segementation),修改下Main下的文件 (train.txt, trainval.txt, val.txt, test.txt),里面写上想要进行任务的图片的编号
    将上述你的数据集放在tf-faster-rcnn/data/VOCdevkit2007/VOC2007下面,替换原始VOC2007的JPEGIMages,Imagesets,Annotations,这里也可以直接更换文件夹名称。
    2、为训练数据创建软连接
    3、修改源代码:tf-faster-rcnn/experiments/train_faster+rcnn.sh和tf-faster-rcnn/lib/datasets/pascal_voc.py文件
    4、运行下面命令开始训练,下次训练之前,需要将data/cache和output(输出的model存放的位置,不训练此文件夹没有)两个文件夹删除。

    ln -s /Users/steven/data/Trainingdata Trainingdata
    ./experiments/scripts/test_faster_rcnn.sh 0 TrainData res101
    

    tf-faster-rcnn的工程目录进行简单介绍:
    data: 存放数据,以及读取文件的cache;
    experiments: 存放配置文件以及运行的log文件,配置文件
    lib: python接口
    output: 输出的model存放的位置,不训练此文件夹没有
    tensorboard: 可视化部分
    tools: 训练和测试的python文件

    下面几篇是caffe框架下faster-rcnn的相关博客: http://www.cnblogs.com/dudumiaomiao/p/6556111.html
    http://blog.csdn.net/u012841667/article/details/69555074
    http://blog.csdn.net/samylee/article/details/51201744
    http://blog.csdn.net/Gavin__Zhou/article/details/52052915
    http://blog.csdn.net/sinat_30071459/article/details/51332084

    相关文章

      网友评论

      • Jason_d06f:您好:我是最近剛入門的新手
        按照您的步驟去執行,結果最後在執行demo.py時,出現以下錯誤訊息
        Traceback (most recent call last):
        File "C:\Users\HP\Downloads\Fater-RCNN資料夾\tf-faster-rcnn-master\tf-faster-rcnn-master\tools\demo.py", line 20, in <module>
        from model.test import im_detect
        File "C:\Users\HP\Downloads\Fater-RCNN資料夾\tf-faster-rcnn-master\tf-faster-rcnn-master\tools\..\lib\model\test.py", line 24, in <module>
        from model.nms_wrapper import nms
        File "C:\Users\HP\Downloads\Fater-RCNN資料夾\tf-faster-rcnn-master\tf-faster-rcnn-master\tools\..\lib\model\nms_wrapper.py", line 12, in <module>
        from nms.gpu_nms import gpu_nms
        ModuleNotFoundError: No module named 'nms.gpu_nms'
        請問我是哪裡出錯了嗎?怎麼會沒有這個模組...
        麻煩大神幫我解惑,非常感謝 !
        不想天亮的星:应该是没编译好,我遇到过,重新make下
      • 不想天亮的星:为什么第四步下载模型那里不能下载呢?一直在显示 已发出 HTTP 请求,正在等待回应...
        不想天亮的星:已经解决了。。原github上贴了备用网址
      • 醬油:您好!想請問您是使用windows還是Linux系統進行安裝測試呢?
        因為我在Windows底下的tensorflow下進行安裝到第二步驟make clean就出現錯誤
        請大師指點迷津
        素娜93:@醬油 昨天又在ubuntu上测试了一下,如果是cpu版本的tensorflow,需要先改代码在make,可能就好哦了。
        素娜93: @醬油 linux
      • 6085c61aa2de:您好,tf-faster-rcnn/lib/model下并不存在 setup.py 文件

        素娜93:@科西嘉人 我更新了一下,笔误,是config.py,还有没有出现那个问题啊。
        6085c61aa2de:您好,我做到第四部下载数据的时候,命令行显示 no data received!
        6085c61aa2de:@我是笨徒弟 首先谢谢您的回复,但是 外面的 setup.py文件并没有 __C.USE_GPU_NMS = False 这条语句。 您用clone的方法可以跑出结果对吗?
      • 2d46be5523be:annotation下的文件你用的什么工具做的呢
        素娜93:@zjz5250 用的labellmage,然后把图像按照pascal voc形式存放。

      本文标题:tf-faster-rcnn实战篇

      本文链接:https://www.haomeiwen.com/subject/fwiklxtx.html