Jump to related tools in the same category or review the original source on GitHub.

Image & Video Generation @roamerxv Updated 6/28/2026 3,190 downloads 0 stars Security: Pass

Ocr Python OpenClaw Plugin & Skill | ClawHub

Looking to integrate Ocr Python into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate image & video generation tasks instantly, without having to write custom tools from scratch.

What this skill does

Optical Character Recognition (OCR) tool, supports Chinese and English text extraction from PDFs and images.

Install

ClawHub CLI
openclaw skills install @roamerxv/ocr-python
Node.js (npx)
npx clawhub@latest install ocr-python

Full SKILL.md

Open original

SKILL.md content below is scrollable.


name: ocr description: Optical Character Recognition (OCR) tool, supports Chinese and English text extraction from PDFs and images. Use cases: (1) extract text from scanned PDFs, (2) recognize text from images, (3) extract text content from invoices, contracts, and other documents

OCR Text Recognition

This skill uses PaddleOCR for text recognition, supporting both Chinese and English.

Quick Start

Basic Usage

Perform OCR recognition directly on image or PDF files:

from paddleocr import PaddleOCR

ocr = PaddleOCR(lang='ch')
result = ocr.predict("file_path.jpg")

Dependency Installation

Install dependencies before first use:

pip3 install paddlepaddle paddleocr

Output Format

Recognition results return JSON containing:

  • rec_texts: List of recognized text
  • rec_scores: Confidence score for each text

Typical Use Cases

  1. PDF Scans: Use PyMuPDF to extract images first, then OCR
  2. Image Text Recognition: Perform OCR directly on images
  3. Multi-page PDFs: Process page by page

Scripts

Common scripts are located in the scripts/ directory.

ClawHub Registry URL: https://clawhub.ai/roamerxv/skills/ocr-python

Related skills

If this matches your use case, these are close alternatives in the same category.