Mixpeek Logo
    Schedule Demo
    Image

    Image Text Extraction (OCR)

    Extract text content from images and scan documents

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a image file

    Drag and drop a image file here, or click to browse

    The OCR model to use. Default: easyocr

    Minimum confidence threshold for text detection. Default: 0.7

    Language of the text. Default: en

    Whether to include text block information. Default: true

    Output

    {
    "text": "WELCOME TO\nSAN FRANCISCO",
    "blocks": [
    {
    "text": "WELCOME TO",
    "bbox": [
    120,
    50,
    350,
    90
    ],
    "confidence": 0.97
    },
    {
    "text": "SAN FRANCISCO",
    "bbox": [
    80,
    110,
    390,
    150
    ],
    "confidence": 0.99
    }
    ],
    "language": "en"
    }