Git Product home page Git Product logo

mask-rcnn-mmdetection's Introduction

MMdetection-Maskrcnn-Onnx-Raspberry

title


中文文档|配置文档

How to use?

(Python)mmdetection pth convert to onnx

python deployment/pytorch2onnx.py \
    configs/mask_rcnn_r50_fpn_mstrain-poly_3x_coco.py \
    checkpoints/latest.pth \
    --output-file result.onnx \
    --input-img deployment/color.jpg \
    --dynamic-export \
    --cfg-options \
      model.test_cfg.deploy_nms_pre=-1 \

(Python) Using onnx_inference.py to do inference with onnx

Run:

# 执行测试
python onnx_inference.py {your pic} --model {your onnx model}

(C++)Using onnx_inference.py to do inference with onnx

Run:

# 回到项目文件夹下
cd ..
# 进入inference_C++文件夹下
cd inference_C++
# 创建build
mkdir build
cd build
cmake ..
make
# 运行生成的可执行文件runDet
./runDet {your pic} --model {your onnx model}

(C++)How to inference on the Raspberry pi 3B/4B?

  • One thing you should notice is that the release of onnxruntime can't be use on the Raspberry Pi with the architecture of arvm7l, what you should do is rebuild the onnxruntime from the sourse code.

  • Build the onnxruntime from sourse for preparation.

  • Download the release of onnxruntime and replace the .so files in /lib folder with the .so files you just built from the preparation.

  • Run

# 回到项目文件夹下
cd ..
# 进入inference_C++文件夹下
cd inference_C++
# 创建build
mkdir build
cd build
cmake ..
make
# 运行生成的可执行文件runDet
./runDet {your pic} --model {your onnx model}

mask-rcnn-mmdetection's People

Contributors

charlie-c929 avatar cnwindson avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.