Azure Vision
GCP Vision
Ref - Link
Yolo V8
Image to Text Model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!pip install ultralytics | |
import ultralytics | |
ultralytics.checks() | |
from google.colab import files | |
files.upload() | |
# Run inference on an image with YOLOv8n | |
!yolo predict model=yolov8n.pt source='5.jpg' | |
cd runs/detect/predict | |
ls | |
import cv2 | |
from google.colab.patches import cv2_imshow | |
image = cv2.imread('5.jpg') | |
cv2_imshow(image) |
Log Meal - Link
No comments:
Post a Comment