"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

June 20, 2023

Yolo V8 Examples vs Azure vs Google Vision vs Image2Text vs LogMeal

Azure Vision


GCP Vision

Ref - Link



Yolo V8


Image to Text Model
!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

Keep Exploring!!!

No comments: