필터 지우기
필터 지우기

how to segment/crop words from a line in an image in matlab?

조회 수: 4 (최근 30일)
Meghashree G
Meghashree G 2016년 1월 12일
답변: Akshay Raj 2020년 1월 8일
Hello, Im trying to segment/crop words from the line in an image.(this line is obtained by segmenting line from paragraph)
How do i achieve this?Please help me with the code. Here is the input image.
Thank you in advance.

채택된 답변

harjeet singh
harjeet singh 2016년 1월 13일
use this code
clear all
close all
clc
img=imread('line2.png');
img1=bwareaopen(~img,100);
se=strel('disk',7);
img2=imdilate(img1,se);
[lab,num]=bwlabel(img2);
figure(1)
for i=1:num
[r,c]=find(lab==i);
img4=img(:,min(c):max(c));
subplot(4,4,i)
imshow(img4)
end
  댓글 수: 1
Meghashree G
Meghashree G 2016년 4월 8일
hello sir.. I tried your code for word segmentation for the attached image ..But its not working..Please tell me how to do it?
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Image Analyst
Image Analyst 2016년 1월 13일
I took your m-file there and fixed it. Your fixed code is attached.

Akshay  Raj
Akshay Raj 2020년 1월 8일
i need to extarct word level in this image and need to store those segmented image in an folder .please hel me out to do thisdt1.jpg

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by