윈도우즈 10에서 모바일Net ssd 컴파일 기록
2543 단어 이미지 검사
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
OpenCV 를 사용 하여 그림 의 사각형 을 검사 합 니 다.본 논문 의 사례 는 OpenCV 검 측 이미지 의 사각형 의 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다. 머리말 1.OpenCV 에는 내 장...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.