tesseract-ocrHow do I use tesseract OCR to create bounding boxes?
Tesseract OCR is an open source optical character recognition (OCR) engine. It can be used to create bounding boxes around text in images.
To use Tesseract OCR to create bounding boxes, you need to first install the Tesseract library. For example, on Ubuntu you can use the following command:
sudo apt-get install tesseract-ocr
Once the library is installed, you can use the following Python code to create bounding boxes around text in an image:
from PIL import Image
import pytesseract
import cv2
# Load the image
image = cv2.imread('example.jpg')
# Create a copy of the image
img_copy = image.copy()
# Use Tesseract to detect text in the image
text = pytesseract.image_to_data(image)
# Create a list of bounding boxes
bboxes = []
for x, bbox in enumerate(text.splitlines()):
if x != 0:
bbox = bbox.split()
if len(bbox) == 12:
x, y, w, h = int(bbox[6]), int(bbox[7]), int(bbox[8]), int(bbox[9])
bboxes.append((x, y, w, h))
# Draw the bounding boxes on the image
for bbox in bboxes:
x, y, w, h = bbox
cv2.rectangle(img_copy, (x, y), (x + w, y + h), (0, 0, 255), 1)
# Show the image
cv2.imshow('Image with Bounding Boxes', img_copy)
cv2.waitKey(0)
This code will produce an image with bounding boxes around the detected text, as shown in the following image:
The code works by first loading the image, then using Tesseract to detect text in the image. Once the text is detected, the code creates a list of bounding boxes around the text. Finally, the code draws the bounding boxes on the image and displays it.
Helpful links
More of Tesseract Ocr
- How can I use Tesseract to perform zonal OCR?
- How can I use Python to get the coordinates of words detected by Tesseract OCR?
- How do I use Tesseract OCR with the command line?
- How can I use Tesseract OCR with Xamarin Forms?
- How do I set the Windows path for Tesseract OCR?
- How do I install Tesseract OCR on Windows?
- How do I add Tesseract OCR to my environment variables?
- How can I use Tesseract OCR with Xamarin?
- How do I install Tesseract-OCR using Yum?
- How do I use the tesseract OCR Windows exe?
See more codes...