How can I design a correlator to detect the character ‘G’ from the google image?

1 次查看(过去 30 天)
I want to design a correlator to detect the character 'G' from the given image. So can you guys please help me?

采纳的回答

Image Analyst
Image Analyst 2021-10-8
If you know the G is there, you can get a mask for the G letter with the following code, which assumes the G will be the leftmost letter in the image:
rgbImage = imread('google.jpeg');
mask = ~imbinarize(rgb2gray(rgbImage)); % Get letters as foreground.
imshow(mask);
labeledImage = bwlabel(mask); % Give an ID# to each blob.
g = ismember(labeledImage, 1); % Extract blob #1, which will be the G
imshow(g);
If you're not sure if the G is there, then you can use the normalized cross correlation (as in my other answer) to see if it's there or not.

更多回答(3 个)

Mahesh Taparia
Mahesh Taparia 2021-10-7
Hi
The letter 'G' in Google appear to be bigger than the rest of the letter. So 'G' can be selected based on its size. You can use regionprops function to find the bounding box coordinate with maximum area and then draw rectangle on it. For example consider the code below:
a=imread('google.jpeg');
b=rgb2gray(a)<200;
c=regionprops(b,'Area','BoundingBox');
area=zeros(length(c),1);
for i=1:length(c)
area(i)=c(i).Area;
end
[val idx]= max(area);
bbox = c(idx).BoundingBox;
imshow(a);
hold on;
rectangle('Position',bbox)
Hope it helps!

Image Analyst
Image Analyst 2021-10-7
If you have the G as a template, you can use normalized cross correlation with the function normxcorr2(). See attached example.

yanqi liu
yanqi liu 2021-10-8
sir,please check the follow code to get some information
clc;
close all;
clear all;
img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/757079/image.jpeg');
% get chars
hsv = rgb2hsv(img);
s = mat2gray(hsv(:,:,2));
s = imcomplement(s);
bw = im2bw(s, graythresh(s));
bw = ~bw;
figure; imshow(bw);
% gen G block
figure('Color', 'w'); hold on; axis off;
text(0.5,0.5,'G','FontSize',64);
f = getframe(gcf);
f = frame2im(f);
bw2 = ~im2bw(f);
[r,c] = find(bw2);
bw2 = bw2(min(r):max(r),min(c):max(c));
% make correlator
[L,num] = bwlabel(bw);
stats = regionprops(L);
rc = [];
for i = 1 : num
bwi = imcrop(bw, round(stats(i).BoundingBox));
bwi = imresize(bwi, size(bw2));
rc(i) = corr2(bwi,bw2);
end
% max corr
[~, ind] = max(rc);
figure; imshow(img);
hold on; rectangle('Position', round(stats(ind).BoundingBox), 'EdgeColor', 'r', 'LineWidth', 2, 'LineStyle', '-');
  2 个评论
Rahul Shah
Rahul Shah 2021-10-20
Hello,
How can I generate plot to show the correlation peak that this highest intensity is for 'G'? I have attached an example of UTK where plot show the peak for 'T'.
Image Analyst
Image Analyst 2021-10-20
@Rahul Shah, youi can find the brightest point then get that line. If your correlation image is corrImage, do
maxValue = max(corrImage(:))
[rows, columns] = find(corrImage == maxValue);
verticalProfile = corrImage(:, columns(1));
plot(verticalProfile, 'r-', 'LineWidth', 2);
horizontalProfile = corrImage(rows(1), :);
plot(horizontalProfile, 'b-', 'LineWidth', 2);
ylabel('Correlation Value');
xlabel('Pixel Location')
title('Correlation Profile Through Peak')
grid on;
legend('Vertical', 'Horizontal')

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by