Detect objects in images
Detect objects in images using an SVM model
Detect objects in images
Detect objects in your image
Detect objects in your images
Detect objects in your images
Detect objects in an image
Detect objects in your image
Detect objects in an image
Detect objects in any image
Upload images to get predictions
Detect objects in an image
Detect objects in images
Transformers.js is a JavaScript library designed for detecting objects in images on the client side. It leverages modern machine learning models to enable accurate and efficient object detection directly in web browsers. The library provides an intuitive API for developers to integrate object detection capabilities into their web applications without requiring server-side processing.
• Real-time Object Detection: Detect objects in images or video streams with low latency.
• Pre-trained Models: Ships with models like SSD MobileNet and others for accurate detection.
• Selfie Segmentation: Includes models for segmenting people from the background.
• Customizable: Supports using custom models for specific detection tasks.
• Browser Compatibility: Works in modern browsers without requiring additional plugins.
• API Access: Provides a clean JavaScript API for easy integration into web applications.
• Integration Ready: Compatible with popular front-end frameworks like React, Angular, and Vue.js.
npm install transformers.js
const detector = new Transformers.Detector('ssd_mobilenet_v2');
const image = document.getElementById('inputImage');
const results = await detector.detect(image);
results.forEach(result => {
console.log(`Detected ${result.label} at (${result.x}, ${result.y})`);
});
What browsers are supported by Transformers.js?
Transformers.js supports modern browsers including Chrome, Firefox, Safari, and Edge. It uses WebGL under the hood for hardware acceleration.
Can I use custom models with Transformers.js?
Yes, Transformers.js allows you to use custom TensorFlow.js models for specific detection tasks. You can load a model using a URL or a model buffer.
How do I improve performance in Transformers.js?
For better performance, use smaller models, reduce image resolution, and enable quantization. Also, ensure hardware acceleration is enabled in the browser.