i have this gray image and i need a matlab code to remove the black text only with keeping the eagle image which in the bottom? please help .. Thanks
1 view (last 30 days)
Show older comments
Answers (1)
Image Analyst
on 15 Dec 2016
Try thresholding then calling regionfill().
2 Comments
Image Analyst
on 20 Dec 2016
Something like
binaryImage = grayImage < someThreshold;
output = imregionfill(grayImage, binaryImage);
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!