Hi, I am the beginer for doing simple image subtration to obtain defect image. Is it possible to make it only show the defect image if nothing difference wont show?

1 Ansicht (letzte 30 Tage)
clc
clear
close all
warning off;
x=imread('origin.jpg');
y=imread('capture.jpg');
[g, c, d]=size(x);
y=imresize(y,[g,c]);
subplot(1,3,1);
imshow(x);
title('origin image');
subplot(1,3,2);
imshow(y);
title('capture image');
subplot(1,3,3);
imshow(x-y);
title('defect occur if difference colour shown');

Akzeptierte Antwort

yanqi liu
yanqi liu am 17 Jan. 2022
yes,sir
Is it possible to make it only show the defect image if nothing difference wont show?
may be add some judge rule,such as
clc
clear
close all
warning off;
x=imread('origin.jpg');
y=imread('capture.jpg');
[g, c, d]=size(x);
y=imresize(y,[g,c]);
subplot(1,3,1);
imshow(x);
title('origin image');
subplot(1,3,2);
imshow(y);
title('capture image');
bw = find((x-y) > 1);
if numel(bw) > 1
subplot(1,3,3);
imshow(x-y);
title('defect occur if difference colour shown');
end

Weitere Antworten (1)

Image Analyst
Image Analyst am 17 Jan. 2022
I suggest you use imabsdiff().
diffImage = imabsdiff(x, y);
threshold = 5; % Images must be at least 5 gray levels different to be considered a defect.
mask = diffImage >= threshold;
imshow(mask)
% Get area of defects
props = regionprops(mask, 'Area')
allAreas = [props.Area]
if ~isempty(props)
fprintf('Found %d defect areas.\n', length(props))
else
fprintf('Found no defect areas.\n')
end
  7 Kommentare
CHEE HOON SEOW
CHEE HOON SEOW am 24 Jan. 2022
This is the original code written from you
% yanqui's code first:
clc
clear
close all
warning off;
x=imread('origin.jpg');
y=imread('capture.jpg');
% My changes below:
diffImage = imabsdiff(x, y);
threshold = 5; % Images must be at least 5 gray levels different to be considered a defect.
mask = diffImage >= threshold;
imshow(mask)
% Get area of defects
props = regionprops(mask, 'Area')
allAreas = [props.Area]
if ~isempty(props)
fprintf('Found %d defect areas.\n', length(props))
else
fprintf('Found no defect areas.\n')
end
I am not sure why getting error message and search on it told that the image need to be convert it as grayscale, therefore i try it using rgb2gray() function to convert and do the imabsdiff function, it works
now, I am trying to add in the for loop to make the y image become variable and change the image according inside the loop for doing image substraction.
after that i still getting error, the matlab shown error on function rgb2gray() and told that in error message and i try to change it to im2gray() error again.
due to i have 100+ of image for the y so that i am trying to add in the for loop but it turn out errors

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by