Guide to using IronOCR Filters
IronOCR has the tools you need to read images that may need some preprocessing in the form of Filters. You can choose from a wide arrange of filters that can manipulate your images to become processable.
Get started with IronOCR
Start using IronOCR in your project today with a free trial.
List of OCR Image Filters
The following Image filters can really improve performance:
- Filters to change the Image Orientation
- Rotate - Rotates images by a number of degrees clockwise. For anti-clockwise, use negative numbers.
- Deskew - Rotates an image so it is the right way up and orthogonal. This is very useful for OCR because Tesseract's tolerance for skewed scans can be as low as 5 degrees
- Scale - Scales Ocr Input pages proportionally.
- Filters to manipulate Image Colors
- Binarize - This image filter turns every pixel black or white with no middle ground. May Improve OCR performance cases of very low contrast of text to background.
- ToGrayScale - This image filter turns every pixel into a shade of grayscale. Unlikely to improve OCR accuracy but may improve speed
- Invert - Inverts every color. E.g. White becomes black : black becomes white.
- ReplaceColor - Replaces a color within an image with another color with a certain threshold.
- Filters to try improve Contrast in an Image
- Contrast - Increases contrast automatically. This filter often improves OCR speed and accuracy in low contrast scans.
- Dilate - Advanced Morphology. Dilation adds pixels to the boundaries of objects in an image. Opposite of Erode
- Erode - Advanced Morphology. Erosion removes pixels on object boundaries. Opposite of Dilate
- Filters to try reduce Image Noise
- Sharpen - Sharpens blurred OCR Documents and flattens alpha channels to white.
- DeNoise - Removes digital noise. This filter should only be used where noise is expected.
- DeepCleanBackgroundNoise - Heavy background noise removal. Only use this filter in case extreme document background noise is known, because this filter will also risk reducing OCR accuracy of clean documents, and is very CPU expensive.
- EnhanceResolution - Enhances the resolution of low quality images. This filter is not often needed because OcrInput.MinimumDPI and OcrInput.TargetDPI will automatically catch and resolve low resolution inputs.
Filter Example and Usage
In the following example, we demonstrate how to apply filters within your code
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-1.cs
using IronOcr;
using System;
var ocr = new IronTesseract();
using var input = new OcrInput();
input.LoadImage("my_image.png");
input.Deskew();
var result = ocr.Read(input);
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private ocr = New IronTesseract()
Private input = New OcrInput()
input.LoadImage("my_image.png")
input.Deskew()
Dim result = ocr.Read(input)
Console.WriteLine(result.Text)
Debug Filter / What is the filter doing?
If you are having difficulty with reading images or barcodes within your program. There is a way to save an image of a filtered result within your program. This way you can debug and see exactly what each filter does and how it is manipulating your image.
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-2.cs
using IronOcr;
using System;
var file = "skewed_image.tiff";
var ocr = new IronTesseract();
using var input = new OcrInput();
var pageindices = new int[] { 1, 2 };
input.LoadImageFrames(file, pageindices);
// Here we apply the filter: Deskew
input.Deskew();
// Save the input with filter(s) applied
input.SaveAsImages("my_deskewed");
// We read, then print the text to the console
var result = ocr.Read(input);
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private file = "skewed_image.tiff"
Private ocr = New IronTesseract()
Private input = New OcrInput()
Private pageindices = New Integer() { 1, 2 }
input.LoadImageFrames(file, pageindices)
' Here we apply the filter: Deskew
input.Deskew()
' Save the input with filter(s) applied
input.SaveAsImages("my_deskewed")
' We read, then print the text to the console
Dim result = ocr.Read(input)
Console.WriteLine(result.Text)
Filter Use Cases
Rotate
Filter Explanation
Rotate is a filter used to manually set a known rotation to an image to get it closest to straight. IronOCR has functionality to run Deskew()
however, the degree of tolerance for this is rather narrow and is best used for images that are almost perfectly straight (within 15 degrees or so). For input images that are 90 degrees off, or upside down, we should call Rotate()
.
Use-Case Code Example
This is an example of calling Rotate to correct an upside-down image:
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-3.cs
using IronOcr;
using System;
var image = "screenshot.png";
var ocr = new IronTesseract();
using var input = new OcrInput();
// Load at least one image
input.LoadImage(image);
// Rotate 180 degrees because image is upside-down
input.Rotate(180);
// Read image into variable: result
var result = ocr.Read(input);
// Example print to console
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private image = "screenshot.png"
Private ocr = New IronTesseract()
Private input = New OcrInput()
' Load at least one image
input.LoadImage(image)
' Rotate 180 degrees because image is upside-down
input.Rotate(180)
' Read image into variable: result
Dim result = ocr.Read(input)
' Example print to console
Console.WriteLine(result.Text)
Before Input.Rotate(180) | After Input.Rotate(180) |
---|---|
Deskew
Filter Explanation
Uses a Hough Transform to attempt to straightness an image within a certain degrees of tolerance. This is important for images that are not completely straight because sometimes a tilted document may cause a misread.
Note: This method returns a boolean which is true if the filter was applied, and false if it failed to apply due to not being able to detect image orientation. This will fail if the page has no contents to base orientation off.
Use-Case Code Example
This is an example of calling Deskew to correct a skewed image:
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-4.cs
using IronOcr;
using System;
var image = @"paragraph_skewed.png";
var ocr = new IronTesseract();
using var input = new OcrInput();
// Load at least one image
input.LoadImage(image);
// Apply deskew with 15 degree snap
bool didDeskew = input.Deskew(15);
if (didDeskew)
{
// Read image into variable: result
var result = ocr.Read(input);
Console.WriteLine(result.Text);
}
else
{
Console.WriteLine("Deskew not applied because Image Orientation could not be determined.");
}
Imports IronOcr
Imports System
Private image = "paragraph_skewed.png"
Private ocr = New IronTesseract()
Private input = New OcrInput()
' Load at least one image
input.LoadImage(image)
' Apply deskew with 15 degree snap
Dim didDeskew As Boolean = input.Deskew(15)
If didDeskew Then
' Read image into variable: result
Dim result = ocr.Read(input)
Console.WriteLine(result.Text)
Else
Console.WriteLine("Deskew not applied because Image Orientation could not be determined.")
End If
Before Deskew() | After Deskew() |
---|---|
Scale
Filter Explanation
Scale is a useful image manipulation filter that will help to resize an image with the pixels it already has. This can be used when a barcode is not being scanned because the image is only tens of pixels wide with each bar as one pixel, or if text is too small with no anti-aliasing.
Note: There is a sweet-spot for barcode sizes of 1000px x 1000px
which Barcodes can be read well in which should be considered if your barcode is not being found.
Use-Case Code Example
This is an example of calling Scale to enlarge the gaps between bars in a Barcode for scanning:
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-5.cs
using IronOcr;
using System;
var image = @"small_barcode.png";
var ocr = new IronTesseract();
// Optional: This example uses a barcode
ocr.Configuration.ReadBarCodes = true;
using var input = new OcrInput();
// Load at least one image
input.LoadImage(image);
// Apply scale
input.Scale(400); // 400% is 4 times larger
// Read image into variable: result
var result = ocr.Read(input);
// Example print to console
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private image = "small_barcode.png"
Private ocr = New IronTesseract()
' Optional: This example uses a barcode
ocr.Configuration.ReadBarCodes = True
Dim input = New OcrInput()
' Load at least one image
input.LoadImage(image)
' Apply scale
input.Scale(400) ' 400% is 4 times larger
' Read image into variable: result
Dim result = ocr.Read(input)
' Example print to console
Console.WriteLine(result.Text)
Before Scale() | After Scale() |
---|---|
Binarize
Filter Explanation
The Binarize filter classifies all pixels in an image as either black or white depending on an adaptive algorithm that assesses the image and colors it deems to be the background. When you have an image with many colors but the text can stand out, a binarization filter will remove all the colors and seperate the background into a flat white, and anything it recognizes as text will be colored a full black for easy reading.
Use-Case Code Example
This is an example of calling Binarize to align colored text, and remove background colors and noise:
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-6.cs
using IronOcr;
using System;
var image = @"no-binarize.jpg";
var ocr = new IronTesseract();
using var input = new OcrInput();
// Load at least one image
input.LoadImage(image);
// Apply Binarize
input.Binarize();
// Read image into variable: result
var result = ocr.Read(input);
// Example print to console
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private image = "no-binarize.jpg"
Private ocr = New IronTesseract()
Private input = New OcrInput()
' Load at least one image
input.LoadImage(image)
' Apply Binarize
input.Binarize()
' Read image into variable: result
Dim result = ocr.Read(input)
' Example print to console
Console.WriteLine(result.Text)
Before Binarize() | After Binarize() |
---|---|
Invert
Filter Explanation
IronOCR reads best when the image read is black text on a white background. When applying a series of filters it is important to try to achieve this result before a read. Invert is a simple filter that inverts all colors on an image. White becomes black, black becomes white, and everything in between flips.
Use-Case Code Example
This is an example of calling Invert to turn white on black into black on white:
:path=/static-assets/ocr/content-code-examples/tutorials/c-sharp-ocr-image-filters-7.cs
using IronOcr;
using System;
var image = @"before-invert.png";
var ocr = new IronTesseract();
using var input = new OcrInput();
// Load at least one image
input.LoadImage(image);
// Apply Invert
input.Invert(true);
// Read image into variable: result
var result = ocr.Read(input);
// Example print to console
Console.WriteLine(result.Text);
Imports IronOcr
Imports System
Private image = "before-invert.png"
Private ocr = New IronTesseract()
Private input = New OcrInput()
' Load at least one image
input.LoadImage(image)
' Apply Invert
input.Invert(True)
' Read image into variable: result
Dim result = ocr.Read(input)
' Example print to console
Console.WriteLine(result.Text)
Before | After |
---|---|