pat
Published © GPL3+

Fall Detection on Jetson Nano: Customizing YOLOv8

Unlock real-time fall detection on Jetson Nano with customized YOLOv8! Dive into edge AI and safeguard lives with cutting-edge technology

AdvancedFull instructions provided15 hours1,153
Fall Detection on Jetson Nano: Customizing YOLOv8

Things used in this project

Hardware components

NVIDIA Jetson Nano Developer Kit
NVIDIA Jetson Nano Developer Kit
×1
Webcam, Logitech® HD Pro
Webcam, Logitech® HD Pro
×1

Story

Read more

Code

Code

Python
import cv2
from ultralytics import YOLO

# Load the YOLOv8 model (replace 'yolov8n.pt' with your model path if needed)
model = YOLO("yolov8n.pt")

# Perform inference on an image (replace 'input.jpg' with your image path)
results = model.predict(source="/home/infinity/fl6.JPG", save=False)

# Extract and plot the results
result_image = results[0].plot()

# Display the image using OpenCV
cv2.imshow("YOLOv8 Inference", result_image)

# Wait for a key press and close the display window
cv2.waitKey(0)
cv2.destroyAllWindows()

Credits

pat
13 projects • 4 followers
AI Convergence Engineering, Software Engineering, ML, deep learning, image processing, computer vision, circuit design, and Edge AI devices.
Contact

Comments

Please log in or sign up to comment.