how can i segment characters from the image with lot of white pixels and similar background like text ?
1 view (last 30 days)
Show older comments
Avinash Kumar
on 10 Nov 2017
Commented: Avinash Kumar
on 15 Nov 2017
i need to segment the character part of image and then each individual characters as a seperate image. i am having problem to do in matlab. Here is the image attached. P.S. : I have tried earlier answers for character segmentation, but this image seems a bit difficult. could anybody please help :)
i want to segment the portion containing characters into a seperate image. so my aim is not to just recognize text but to segment it as an image from above image. Finally i want to compare the segmented image of hello world from this printed board with the reference image which is made in paint and have just hello world witten in it. So main aim is Kinda quality comparison of printed image with 100 percent accurate image, so basically how good each character it is printing.
2 Comments
Accepted Answer
Image Analyst
on 10 Nov 2017
You just need to subtract the images:
diffImage = abs(double(grayImage) - double(refImage));
Then see if you have a significant number of pixels above zero. If you do, then the test image does not say Hello World.
16 Comments
Image Analyst
on 15 Nov 2017
bwareafilt() will not introduce any additional blobs, like those in the corner. You can delete blobs touching the border with imclearborder().
More Answers (0)
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




