🍋
Menu
Image

Object Detection

A computer vision task that identifies and locates objects within an image using bounding boxes and class labels.

Technisches Detail

A object detection defines a gamut — the total range of reproducible colors. sRGB covers approximately 35% of the visible spectrum and is the web standard. Display P3 (used by Apple devices) covers ~25% more than sRGB. Adobe RGB targets professional photography and print workflows. CMYK (Cyan/Magenta/Yellow/Key) is subtractive and used for print, while RGB is additive and used for screens. Converting between color spaces can cause gamut clipping where out-of-range colors snap to their nearest representable value.

Beispiel

```javascript
// Object Detection: processing with Canvas API
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
ctx.drawImage(sourceImage, 0, 0);
const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
// Process pixels in imageData.data (RGBA array)
```

Verwandte Tools

Verwandte Begriffe