Hi everyone,
Does the dnn module of opencv GPU is support on jetson platform? which version of opencv?
Hi,
DNN module in OpenCV cannot be compiled with latest cuDNN v8.0 package due to API change.
You can build v4.3.0 from source with the following script on the JetPack4.4 DP (notice: latest GA version doesn’t work) .
#!/bin/bash
#
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA Corporation and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA Corporation is strictly prohibited.
#
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <Install Folder>"
exit
fi
folder="$1"
user="nvidia"
passwd="nvidia"
echo "** Remove other OpenCV first"
This file has been truncated. show original
Thanks.
1 Like
Thanks,
The JetPack 4.4 - L4T R32.4.3 production release Is GA?
Please use the JetPack that inlcudes L4T R32.4.2 for OpenCV DNN.
Thanks.