region extraction from a text document Image

I have a image(binary image already extracted from Input Image) in which I have to extract the paragraph for example from"Apart from my to....from me"this paragraph I want to extract and similarly "during the war to...German reparation" how should I do I have extracted the body from input Image
Page_body.png

2 comentarios

praveen rai
praveen rai el 7 de Mzo. de 2019
any suggestion anyone want to give or anything addtional should I add so that anyone can help me please tell me
KSSV
KSSV el 7 de Mzo. de 2019
Try ocr...

Iniciar sesión para comentar.

 Respuesta aceptada

Image Analyst
Image Analyst el 7 de Mzo. de 2019

0 votos

You need to scan your document with something like stdfilt() with the proper size window to identify blocks of text. It will have high values, whereas smooth areas like photos and white space will have low values, Then you can threshold the stdfilt image and use bwareaopen() to look for appropriate sized areas or use regionprops and look for rectangular shaped areas.

1 comentario

Image Analyst
Image Analyst el 8 de Mzo. de 2019
It will get you the entire block of text. If you want to find paragraphs within that, it looks like you can scan down the image, getting the block sum as a function of column number. The columns that start paragraphs will have a lower sum since there are no pixels there.

Iniciar sesión para comentar.

Más respuestas (1)

KSSV
KSSV el 7 de Mzo. de 2019
Editada: KSSV el 7 de Mzo. de 2019
I = imread('Page_body.png');
results = ocr(I);
str = results.Text

5 comentarios

praveen rai
praveen rai el 7 de Mzo. de 2019
its giving error on line "str= results.Txt(saying no appropriate method)
basically I want bounding box on those two paragraph in that image
Typo error...it should be
str = results.Text
Edited the code.
praveen rai
praveen rai el 7 de Mzo. de 2019
sorry I typed here wrong but i copy your code and paste as it is so error is giving my matlab
KSSV
KSSV el 7 de Mzo. de 2019
i have dited thw code....try again..
praveen rai
praveen rai el 8 de Mzo. de 2019
ya thnx but what u sent I dont want that

Iniciar sesión para comentar.

Categorías

Preguntada:

el 6 de Mzo. de 2019

Comentada:

el 8 de Mzo. de 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by