From a6df67e8bcd5159cde27556f4f6a315f8dc2215f Mon Sep 17 00:00:00 2001 From: shamikam Date: Mon, 16 Jan 2017 02:56:17 +0530 Subject: First Commit --- macros/ocr.sci | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 macros/ocr.sci (limited to 'macros/ocr.sci') diff --git a/macros/ocr.sci b/macros/ocr.sci new file mode 100644 index 0000000..7e0ed5b --- /dev/null +++ b/macros/ocr.sci @@ -0,0 +1,27 @@ +function [ txt ] = ocr(image) +// This function is used to identify the text in an image. +// +// Calling Sequence +// results = ocr(image); +// +// Parameters +// results: OCR Text Struct which contains text, characterBoundingBoxes, words and wordConfidences +// image: Input image to the OCR +// +// Description +// OCR stands for Optical Character Recognition. It is used for scanning documents which contain text and to convert them into documents that can be edited. +// +// Examples +// image = imread('sample.jpg'); +// results = ocr(image); +// +// Authors +// Rohit Suri + + image_list = mattolist(image) + + [ text, characterBoundingBoxes, words, WordConfidences ] = opencv_ocr(image_list) + + txt = struct("Text", text, "characterBoundingBoxes", characterBoundingBoxes, "Words", words, "WordConfidences", WordConfidences) + +endfunction -- cgit