CLI usage

CLI usage1. Download source code2. Use CLI prediction2.1. CLI usage syntax2.2, Image PredictionEffect preview3.3, Video predictionEffect preview3.4, Real-time predictionReferences

1. Download source code

2. Use CLI prediction

CLI (Command-Line Interface) is a way for users to interact with computers or software programs. Users run programs or perform tasks by typing text commands instead of clicking icons or buttons through a graphical user interface (GUI).

2.1. CLI usage syntax

2.2, Image Prediction

Use yolo11n.pt to predict the images provided by the ultralytics project: If the system does not find the corresponding model file in the directory where the command is run, it will automatically download it (if it cannot be downloaded, you can copy the model into it yourself)

Enter the project folder:

Use yolo11n.pt to detect the images in the target folder and output the results:

image-20241228111341948

Effect preview

Video location output by yolo recognition: /home/pi/ultralytics/ultralytics/runs/detect;

Each time it is run, the predict in this folder will automatically increase by 1

image-20241228111925618

3.3, Video prediction

Use yolo11n.pt to predict videos under the ultralytics project (not the videos that come with ultralytics): If the system does not find the corresponding model file in the directory where the command is run, it will automatically download it (if it cannot be downloaded, you can copy the model into it yourself)

Enter the project folder:

Use yolo11n.pt to detect the video in the target folder and output the result:

image-20241228112309663

Effect preview

Video location of yolo recognition output: /home/pi/ultralytics/ultralytics/runs/detect

Each time it runs, the predict under this folder automatically increases by 1

You can use the VLC application pre-installed on the Raspberry Pi to view the video

image-20250314173317894

image-20241228113207095

3.4, Real-time prediction

Use yolo11n.pt to predict the USB camera screen: If the system does not find the corresponding model file in the directory where the command is run, it will automatically download it (if it cannot be downloaded, you can copy the model yourself)

Enter the project folder:

Use yolo11n.pt to detect the camera screen and output the results: Currently, only USB cameras can directly use CLI to predict real-time images. CSI cameras do not have relevant information that can be used directly as input sources

Click the terminal and press the "Ctrl + C" shortcut key to terminate the program!

Parameter Description

model: Specify the YOLO model

source: Specify the recognition source: multiple cameras can switch numbers

save=False: Disable saving results

show: Real-time display

image-20241228120053868

References

https://github.com/ultralytics/ultralytics

https://docs.ultralytics.com/usage/cli/