Yandex Vision
Bilder über OCR, Klassifizierung und Gesichtserkennung mit der Yandex Vision API analysieren
Yandex Vision is a computer vision service from Yandex Cloud providing OCR text extraction, image classification, face detection, and multi-feature batch image analysis.
With the Yandex Vision integration in AACFlow, you can:
- OCR (Recognize Text): Extract text from images and documents
- Classify Image: Categorize images using pre-trained classification models
- Detect Faces: Locate and analyze faces in images
- Batch Analyze (Advanced): Run multiple analysis features in a single request
This integration enables document digitization, content moderation, identity verification, and image data extraction workflows.
Nutzungsanleitung
Integrate Yandex Vision into the workflow to analyze images. Requires a Yandex Cloud IAM token. Use the Yandex Cloud IAM block to obtain tokens programmatically. Images must be provided as base64-encoded data.
Tools
yandex_vision_ocr
Extract text from an image using OCR
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
iamToken | string | Ja | Yandex Cloud IAM token |
imageData | string | Ja | Base64-encoded image data |
folderId | string | Ja | Yandex Cloud folder ID |
languageCodes | string | Nein | Language codes for OCR (e.g., ru,en) |
mimeType | string | Nein | Image MIME type (default: image/jpeg) |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
text | string | Extracted text content |
blocks | array | Text blocks with position metadata |
yandex_vision_classify
Classify an image
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
iamToken | string | Ja | Yandex Cloud IAM token |
imageData | string | Ja | Base64-encoded image data |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
properties | array | Classification results with labels and probabilities |
yandex_vision_faces
Detect faces in an image
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
iamToken | string | Ja | Yandex Cloud IAM token |
imageData | string | Ja | Base64-encoded image data |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
faces | array | Detected faces with bounding box coordinates |
count | number | Number of faces detected |
yandex_vision_analyze
Batch analyze image with multiple features
Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
iamToken | string | Ja | Yandex Cloud IAM token |
imageData | string | Ja | Base64-encoded image data |
Ausgabe
| Parameter | Typ | Beschreibung |
|---|---|---|
results | array | Analysis results for each requested feature |
Links
- Official API: https://yandex.cloud/ru/docs/vision/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_vision.ts

