Transformers.js
Detect objects in your images
You May Also Like
View AllRoboflow
Identify objects using your webcam
Transformers.js
Upload image to detect objects
YOLOv3
Identify objects in images
MBARI Benthic Supercategory Object Detector
Identify benthic supercategories in images
Yolo Traffic
Detect traffic signs in uploaded images
NumberPlateRecogition
Analyze images and videos to detect objects
Streamlit Webrtc Example
Identify objects in real-time video feed
Object Detection Vue
Detect objects in random images
Arabidopsis Detection
Detect and measure areas of objects in images
YOLOS Object Detection
Identify objects in images with YOLOS model
Mask Wearing Detection App
Detect objects in images and videos
One-shot Object Detection
Draw a box to detect objects
What is Transformers.js ?
Transformers.js is a JavaScript library designed for object detection in images. It leverages the power of TensorFlow.js to provide an easy-to-use interface for detecting objects within images directly in the browser. Transformers.js enables developers to integrate robust object detection capabilities into web applications without requiring extensive machine learning expertise.
Features
β’ Real-time Object Detection: Detect objects in images with high accuracy using pre-trained models.
β’ Pre-trained Models: Utilizes models like SSD MobileNet for efficient and accurate detection.
β’ Multiple Model Support: Easily switch between different object detection models based on your needs.
β’ Customizable Thresholds: Adjust detection confidence thresholds to filter results.
β’ Region of Interest (RoI): Focus on specific areas of an image for targeted detection.
β’ Image and Video Processing: Supports both image and video streams for versatile applications.
How to use Transformers.js ?
-
Install Transformers.js using npm or yarn:
npm install transformers.js
or
yarn add transformers.js
-
Import the library in your JavaScript file:
import { ObjectDetector } from 'transformers.js';
-
Initialize the detector with a pre-trained model:
const detector = new ObjectDetector('ssd_mobilenet_v2'); detector.load().then(() => console.log('Model loaded!'));
-
Load an image or video and pass it to the detector:
const img = new Image(); img.src = 'your-image.jpg'; img.onload = () => detector.detect(img).then(results => console.log(results));
-
Process the results to extract detection data (e.g., bounding boxes, class labels).
Frequently Asked Questions
What browsers are supported by Transformers.js?
Transformers.js works on modern browsers that support TensorFlow.js and WebGL. This includes Chrome, Firefox, Safari, and Edge.
Can I use Transformers.js with video streams?
Yes! Transformers.js supports real-time object detection in video streams. You can pass a video element or a canvas to the detector for continuous detection.
How do I improve detection accuracy?
To improve accuracy, you can increase the confidence threshold or use a more accurate model like SSD MobileNet V2. Additionally, resizing images to the model's input size can enhance performance.