summaryrefslogtreecommitdiff
path: root/macros/ocr.sci
diff options
context:
space:
mode:
Diffstat (limited to 'macros/ocr.sci')
-rw-r--r--macros/ocr.sci27
1 files changed, 27 insertions, 0 deletions
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