> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/roboflow/roboflow-hi/deploy/supported-models/easyocr.md).

# EasyOCR

[EasyOCR](https://github.com/JaidedAI/EasyOCR) हमारे माध्यम से परिनियोजित किया जा सकने वाला बहुभाषी ऑप्टिकल कैरेक्टर रिकग्निशन मॉडल है [Serverless Hosted API](/roboflow/roboflow-hi/deploy/serverless-hosted-api-v2.md). समर्थित भाषाओं में English, Japanese, Kannada, Korean, Latin (जिसमें Spanish, French, Italian, Portuguese, German, Polish, और Dutch शामिल हैं), Telugu, और Simplified Chinese शामिल हैं।

## कोड नमूना

HTTP endpoint के माध्यम से सीधे EasyOCR चलाएँ `curl`, या [`inference-sdk`](https://inference.roboflow.com/inference_helpers/inference_sdk/) रैपर के साथ।

{% tabs %}
{% tab title="HTTP (curl)" icon="webhook" %}
{% stepper %}
{% step %}

### अपनी API Key प्राप्त करें

एक Roboflow खाता बनाएं, अपनी key यहाँ पर ढूँढें [Roboflow API settings page](https://app.roboflow.com/settings/api) और इसे अपने shell में उपलब्ध कराएँ:

```bash
export ROBOFLOW_API_KEY="your-key-here"
```

{% endstep %}

{% step %}

### मॉडल चलाएँ

को कॉल करें `/easy_ocr/ocr` एंडपॉइंट को `curl`:

```bash
curl --location 'https://serverless.roboflow.com/easy_ocr/ocr' \
  --header 'Content-Type: application/json' \
  --data '{
    \"api_key\": \"'\"$ROBOFLOW_API_KEY\"'\",
    "image": {"type": "url", "value": "https://media.roboflow.com/swift.png"},
    "language_codes": ["en"]
  }'
```

{% endstep %}
{% endstepper %}
{% endtab %}

{% tab title="SDK (Python)" icon="python" %}
{% stepper %}
{% step %}

### अपनी API Key प्राप्त करें

एक Roboflow खाता बनाएं, अपनी key यहाँ पर ढूँढें [Roboflow API settings page](https://app.roboflow.com/settings/api) और इसे अपने shell में उपलब्ध कराएँ:

```bash
export ROBOFLOW_API_KEY="your-key-here"
```

{% endstep %}

{% step %}

### निर्भरताएँ इंस्टॉल करें

यह पैकेज मॉडल को कॉल करता है:

```bash
pip install inference-sdk
```

{% endstep %}

{% step %}

### मॉडल चलाएँ

एक छवि पर EasyOCR चलाएँ:

```python
import os
import cv2
import numpy as np
import requests
from inference_sdk import InferenceHTTPClient

content = requests.get("https://media.roboflow.com/swift.png").content
image = cv2.imdecode(np.frombuffer(content, np.uint8), cv2.IMREAD_COLOR)

client = InferenceHTTPClient(
    api_url="https://serverless.roboflow.com",
    api_key=os.environ["ROBOFLOW_API_KEY"],
)

result = client.ocr_image(
    inference_input=image,
    model="easy_ocr",
    language_codes=["en"],
)

print(result["result"]) # निकाला गया टेक्स्ट
```

ऊपर दिया गया code terminal पर inference results प्रिंट करता है:

```
आज पहले मैं सोच रहा था कि मैं, लिंगो में कहें तो, Swift के हर Era से गुज़र चुका हूँ। वाकई मेटा: मैंने Ms. Swift का संगीत Midnights album सुनने के बाद सुनना शुरू किया; एल्बम को पहली बार सुनने के कुछ हफ्तों बाद, मैंने खुद को अलग-अलग गाने बार-बार रिपीट पर बजाते हुए पाया। मैंने एल्बम को क्रम में कई बार सुना:
```

{% endstep %}
{% endstepper %}
{% endtab %}
{% endtabs %}

## Inference speed

Latency मापी गई [Roboflow Inference](https://inference.roboflow.com/) 1x NVIDIA L4 पर, batch size 1, warmup के बाद का औसत।

<table data-search="false"><thead><tr><th>मॉडल</th><th>विलंबता (ms)</th></tr></thead><tbody><tr><td><code>easy_ocr</code></td><td>19.7</td></tr></tbody></table>

एक पूर्ण दस्तावेज़ छवि पर मापा गया (text detection plus recognition).

{% hint style="info" %}
सेट करें `api_url` को अपने deployment target से मिलाएँ:

* `https://serverless.roboflow.com` Serverless Hosted API के लिए।
* `http://localhost:9001` एक local [Inference](https://inference.roboflow.com/) server.
* आपका [Dedicated Deployment](/roboflow/roboflow-hi/deploy/dedicated-deployments.md) एक private endpoint के लिए URL.
  {% endhint %}
