Detecting strongest points on text – Photoshop
I need to find text areas on a natural image. I = rgb2gray(imread('image-name.jpg')); points = detectHarrisFeatures(I); imshow(I); hold on; plot(points); Above version of code retrieves all detected strongest points. When I change the line that starts with "plot" like this:…