Detect objects in images using ๐ค Transformers.js
Detect objects in images and videos using YOLOv5
State-of-the-art Object Detection YOLOV9 Demo
Stream webcam video and detect objects in real-time
Welcome to my portfolio
Detect objects in your images
Identify and label objects in images using YOLO models
Detect objects in images
Identify objects in images using URLs or uploads
Detect objects in images using a web app
Ultralytics YOLOv8 Gradio Application for Testing ๐
Identify objects in images
Generic YOLO Models Trained on COCO
Transformers.js is a JavaScript library designed for object detection tasks. It leverages the power of Hugging Face's Transformers library to enable developers to easily implement object detection models in web applications. With Transformers.js, you can seamlessly integrate pre-trained models like YOLO, Faster R-CNN, and more into your projects.
npm install transformers.js
import { Transformers } from 'transformers.js';
const model = await Transformers.load('facebook/w------
const predictions = await model.detect(image);
predictions.forEach(prediction => {
console.log(prediction.label, prediction.box);
});
What models are supported by Transformers.js?
Transformers.js supports various pre-trained object detection models such as YOLO, Faster R-CNN, and RetinaNet from the Hugging Face Model Hub.
Can I use Transformers.js with any image format?
Yes, Transformers.js supports multiple image formats including JPEG, PNG, and WebP.
How do I optimize performance for real-time detection?
For real-time detection, use lightweight models like YOLOv3 or YOLOv5, and ensure your hardware has a dedicated GPU for faster inference.