How to get the barcode region to red color??
2 次查看(过去 30 天)
显示 更早的评论
How can I write the code to get the red region works on vertical barcode image shown on figure 1(a&b).
Figure 2(a&b) is what I want.
I also attach my coding for your reference.
----
Figure 1a (Original image)
Figure 1b (Processed Image)
Figure 2a (Original Image)
Figure 2b (Processed Image)
Coding
rgb = imread('barcode12.jpg');
% Resize Image
rgb = imresize(rgb,0.33);
figure(),imshow(rgb);
% Convert from RGB to Gray
Igray = rgb2gray(rgb);
Igray = double(Igray);
% Calculate the Gradients
[dIx, dIy] = gradient(Igray);
B = abs(dIx) - abs(dIy);
% Low-Pass Filtering
H = fspecial('gaussian', 20, 10);
C = imfilter(B, H);
figure(),imagesc(C); colorbar;
0 个评论
采纳的回答
Chandra Kurniawan
2012-1-26
When use the first image (vertical barcode image),
I just simply try to change the position of abs(dIx) and abs(dIy) into :
B = abs(dIy) - abs(dIx);
But when I use the second image (horizontal barcode image),
I have the same problem.
Then, I decide to use this command :
B = imabsdiff(abs(dIx),abs(dIy));
3 个评论
Chandra Kurniawan
2012-1-26
This is not exact way to do, but I use the max value of C as threshold.
rgb = imread('av672a.jpg');
Iresize = imresize(rgb,0.33);
Igray = double(rgb2gray(Iresize));
[dIx dIy] = gradient(Igray);
B = imabsdiff(abs(dIx),abs(dIy));
H = fspecial('gaussian', 20, 10);
C = imfilter(B, H);
Th = max(C(:));
D = C < Th-10;
figure, imagesc(D); colorbar;
Then you can remove the rest of unwanted objects will bwareaopen.
更多回答(1 个)
Chandra Kurniawan
2012-1-27
Hi, Kim
I agree with you. To determine the barcode just use boundingbox from regionprops :)
Irgb = imread('15wmqe9.jpg');
Irgb = imread('av672a.jpg');
Iresize = imresize(Irgb,0.33);
Igray = double(rgb2gray(Iresize));
[dIx dIy] = gradient(Igray);
B = imabsdiff(abs(dIx),abs(dIy));
H = fspecial('gaussian', 20, 10);
C = imfilter(B, H);
Th = max(C(:));
D = C < Th-10;
stat = regionprops(~D,'Area','BoundingBox');
for i = 1 : numel(stat),
Iarea(i) = stat(i).Area;
end
[C I] = max(Iarea);
bb = stat(I).BoundingBox;
imshow(Iresize); hold on
rectangle('position',bb,'edgecolor','r');
2 个评论
Elysi Cochin
2012-10-17
i'm not getting it... my error is
??? Index exceeds matrix dimensions.
Error in ==> Untitled6 at 20 bb = stat(I).BoundingBox;
please can u rectify for me..
Image Analyst
2012-10-17
This is not a robust algorithm. It's fine tuned for these particular images. It may need to be tweaked for your images. Reply to the thread you started with the URL to your image.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!