윈도우즈 10에서 모바일Net ssd 컴파일 기록

2543 단어 이미지 검사
1. 모바일 Net-SSD 다운로드:https://github.com/eric612/MobileNet-SSD-windows.
2. 종속 환경을 설치합니다.
 
Requirements
Visual Studio 2013 or 2015
CMake 3.4 or higher (Visual Studio and Ninja generators are supported)
Anaconda
Optional Dependencies
Python for the pycaffe interface. Anaconda Python 2.7 or 3.5 x64 (or Miniconda)
Matlab for the matcaffe interface.
CUDA 7.5 or 8.0 (use CUDA 8 if using Visual Studio 2015)
cuDNN v5

3. 자체 구성에 따라 컴파일된 파일build 업데이트win.cmd:
    if NOT DEFINED MSVC_VERSION set MSVC_VERSION=14
    if NOT DEFINED WITH_NINJA set WITH_NINJA=0
    if NOT DEFINED CPU_ONLY set CPU_ONLY=0
    if NOT DEFINED CUDA_ARCH_NAME set CUDA_ARCH_NAME=Auto
    if NOT DEFINED CMAKE_CONFIG set CMAKE_CONFIG=Release
    if NOT DEFINED USE_NCCL set USE_NCCL=0
    if NOT DEFINED CMAKE_BUILD_SHARED_LIBS set CMAKE_BUILD_SHARED_LIBS=0
    if NOT DEFINED PYTHON_VERSION set PYTHON_VERSION=2
    if NOT DEFINED BUILD_PYTHON set BUILD_PYTHON=1
    if NOT DEFINED BUILD_PYTHON_LAYER set BUILD_PYTHON_LAYER=1
    if NOT DEFINED BUILD_MATLAB set BUILD_MATLAB=0
    if NOT DEFINED PYTHON_EXE set PYTHON_EXE=python
    if NOT DEFINED RUN_TESTS set RUN_TESTS=1
    if NOT DEFINED RUN_LINT set RUN_LINT=1
    if NOT DEFINED RUN_INSTALL set RUN_INSTALL=1
    :: Set python 2.7 with conda as the default python
    if !PYTHON_VERSION! EQU 2 (
        set CONDA_ROOT=E:\Anaconda2
    )
    if !PYTHON_VERSION! EQU 3 (
        set CONDA_ROOT=E:\Anaconda2
    )
    :: Build the install target
    if NOT DEFINED RUN_INSTALL set RUN_INSTALL=1

여기에서 나는python27을 사용했는데, 여기에 자주 오류가 발생할 수 있다.
Could not find url for MSVC version = 1900 and Python version = 3.6. Call Stack (most recent call first):   CMakeLists.txt:77 (include)
나는python2와python3의 설치 주소를python2의 주소로 설정하면 틀리지 않을 것이다. (나도 다른 사람이 어떻게 하는지 보았는데 원인이 불분명하다.)
4. 모바일Net ssd 컴파일하기
> cd $root_path/script
> build_win.cmd

오류가 없으면 성공, $rootpath/script/build/install/bin에서 카페를 볼 수 있습니다.exe 파일.
5. 테스트
Running Caffe
Download SSD_300x300 deploy model and save at
$caffe_root\models\VGGNet\VOC0712\SSD_300x300\
Download deploy weights from original web and save at
$caffe_root\models\MobileNet\
> cd $caffe_root/
> dectect.cmd

Python Usage
> cd $caffe_root
> python examples\ssd\test_ssd.py data\VOC0712\000166.jpg models\MobileNet\MobileNetSSD_deploy.prototxt models\MobileNet\MobileNet

좋은 웹페이지 즐겨찾기