From 2563b8607a8183f4e8c84f1987990f9944a99f42 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Tue, 9 Dec 2025 10:53:58 +0100 Subject: [PATCH] feat(developer): Add OCR Task type to taskprocessing docs Signed-off-by: Marcel Klehr --- developer_manual/digging_deeper/task_processing.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/developer_manual/digging_deeper/task_processing.rst b/developer_manual/digging_deeper/task_processing.rst index 23718cd94..a6d8d854f 100644 --- a/developer_manual/digging_deeper/task_processing.rst +++ b/developer_manual/digging_deeper/task_processing.rst @@ -128,6 +128,11 @@ The following built-in task types are available: * ``images``: ``ListOfImages`` * Output shape: * ``output``: ``Text`` + * ``'core:image2text:ocr'``: This task type is for extracting text from files using OCR. It is implemented by ``\OCP\TaskProcessing\TaskTypes\ImageToTextOpticalCharacterRecognition`` + * Input shape: + * ``input``: ``ListOfFiles`` + * Output shape: + * ``output``: ``ListOfTexts``