Jump to content
Electronics-Lab.com Community

OKMX8MP-C Development Board AI Project Implementation: YOLO Environment Setup


Forlinx

Recommended Posts

This project is based on the Forlinx Embedded OKMX8MP-C development board, which has a virtual machine ported. It is necessary to install the required packages on the development board and ensure that the board is connected to the network.

01 Logging into the OKMX8MP-C Development Board

Connect the Type-C cable to the Debug port and select eMMC as the boot mode (i.e., set mode selection switch 2 to “on” and all others to “off”). After booting, log in using the root account.

Logging into the OKMX8MP-C Development Board

02 Modifying the pip Source

To speed up the installation process, it is necessary to modify the pip source:

mkdir ~/.pip
vim ~/.pip/pip.conf

Add the followings:

[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/

03 Installing the Python venv Environment

First, install the python3-venv package:

apt install python3-venv

Once installed successfully, create a directory named yolo (or any name of choice) and enter this directory to set up the Python 3 environment:

Installing the Python venv Environment

Create the yolo directory (the directory name can be taken by yourself), and enter the directory to install the python3 environment:

cd ~
mkdir yolo
cd yolo
python3 -m venv venv

Execute the following figure:

Create the yolo directory

Activate the Python 3 venv environment:

source venv/bin/activate

If activation is successful, it will display the following:

Activate the Python 3 venv environment

04 Installing Ultralytics

Ultralytics YOLOv8 is based on cutting-edge deep learning and computer vision technologies, offering unparalleled performance in speed and accuracy. Its streamlined design makes it suitable for various applications and easily adaptable to different hardware platforms, from edge devices to cloud API.

To install it, use the following command:

pip3 install ultralytics

Be patient while the installation completes:

pip3 install ultralytics

Once the installation is successful:

OKMX8MP-C Development Board AI Project Implementation: YOLO Environment Setup

05 Testing the Installation

Use the following command to test the setup. The image link in source can be replaced with another link:

yolo predict model=yolov8n.pt source='https://img95.699pic.com/xsj/18/0w/8f.jpg'

During this process, the model and image will be downloaded, so patience is required.

Testing the Installation

After successful execution, the results will be generated in the runs/detect/predict* directory. The results can be copied to a Windows computer using the scp command. In the cmd terminal, execute the following command:

scp [email protected]:/root/yolo/runs/detect/predict/8f.jpg E:\\

OKMX8MP-C Development Board AI Project Implementation: YOLO Environment Setup

If the output can be recognized, it indicates that the YOLO environment is functioning correctly.

OKMX8MP-C Development Board AI Project Implementation: YOLO Environment Setup

It is the process of setting up the YOLO environment on the Forlinx Embedded OKMX8MP-C development board. Hope it is useful.

Link to comment
Share on other sites


Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
  • Create New...