Tengine-lite explores a collection of articles that might be useful

Loading of the overall neural network and running Tengine-EAIDK310 use_KernStarc's Blog-CSDN Blog

EAIDK310 Information

(The strongest in history) Summary of EAIDK-310 introductory resources- Jishu Community- Connecting Developers and Intelligent Computing Ecosystem

Tengine reasoning implementation

Implementation of yolov4 reasoning based on tengine - Programmer Sought

Cross-compilation of protobuf

Cross-compilation of protobuf (C++) - Programmer Sought

Raspberry Pi Reference

Use tengine to run deep learning network on Raspberry Pi | Refrigerator

Installation of protobuf under Ubuntu

ubuntu install protobuf_alex1801's blog-CSDN blog_ubuntu install protobuf

Installation of OpenCV under Ubuntu

sudo apt update
sudo apt install libopencv-dev python3-opencv

Build OpenCV from source code

sudo apt install build-essential cmake git pkg-config libgtk-3-dev \
    libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \
    libxvidcore-dev libx264-dev libjpeg-dev libpng-dev libtiff-dev \
    gfortran openexr libatlas-base-dev python3-dev python3-numpy \
    libtbb2 libtbb-dev libdc1394-22-dev libopenexr-dev \
    libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev

create folder

mkdir ~/opencv_build && cd ~/opencv_build
git clone https://github.com/opencv/opencv.git
git clone https://github.com/opencv/opencv_contrib.git

create build folder

cd ~/opencv_build/opencv
mkdir -p build && cd build
cmake -D CMAKE_BUILD_TYPE=RELEASE \
    -D CMAKE_INSTALL_PREFIX=/usr/local \
    -D INSTALL_C_EXAMPLES=ON \
    -D INSTALL_PYTHON_EXAMPLES=ON \
    -D OPENCV_GENERATE_PKGCONFIG=ON \
    -D OPENCV_EXTRA_MODULES_PATH=~/opencv_build/opencv_contrib/modules \
    -D BUILD_EXAMPLES=ON ..

It can be combined with Google Colab to download the components of the necessary library for copying and pasting

Tengine-EAIDK310 use_KernStarc's Blog-CSDN Blog
 

Guess you like

Origin blog.csdn.net/u013590327/article/details/126500102