How can I design a correlator to detect the character ‘G’ from the google image?
5 次查看(过去 30 天)
显示 更早的评论
I want to design a correlator to detect the character 'G' from the given image. So can you guys please help me?
0 个评论
采纳的回答
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.
0 个评论
更多回答(3 个)
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!
0 个评论
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.
0 个评论
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 个评论
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 Center 和 File Exchange 中查找有关 Detection 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!