grimoire / amirstan_plugin

Useful tensorrt plugin. For pytorch and mmdetection model conversion.
MIT License
156 stars 38 forks source link

need to install deepstream #6

Closed lexiqi closed 4 years ago

lexiqi commented 4 years ago

hi, I want to make sure that need to install deepstream?? Tks image

grimoire commented 4 years ago

Hi deepstream support is an optional config. If you want to use the detection model created by mmdetection-to-tensorrt in deepstream, you can cmake like this:

cmake ...... -DWITH_DEEPSTREAM=true -DDeepStream_DIR=<path/to/deepstream> .....

to enable deepstream support.

If you does not need it. just ignore the log.

lexiqi commented 4 years ago

Hi deepstream support is an optional config. If you want to use the detection model created by mmdetection-to-tensorrt in deepstream, you can cmake like this:

cmake ...... -DWITH_DEEPSTREAM=true -DDeepStream_DIR=<path/to/deepstream> .....

to enable deepstream support.

If you does not need it. just ignore the log.

get,,,thank you~