How can I subtract the absolute value of the original image from the absolute value of the resized image to compare and to find the error in Matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I subtract the absolute value of the original image from the absolute value of the resized image to compare and to find the error in Matlab.
The Matlab keeps giving me that both images have different sizes.
My code as below:
% Check the resized image against the original image then find and display the error
i = imread('pen_image.jpg');
in1=imresize(i,0.5,'nearest'); % Resize the image by 1/2
i_diff=imabsdiff(i,in1);
figure;
imshow(i_diff);
title('Comparison between the resized image and the original image');
3 Commenti
Amit
il 5 Giu 2021
Modificato: Image Analyst
il 5 Giu 2021
Follow following steps,
- First of all you need to check dimensions of both images by checking it with function size().
- If sizes of both the images are not same then you can use resize function to make size of one image same as that of other image.
- Then you can convert both the images from 'uint8' datatype to 'double' data type.
- Then you need to find pixel to pixel difference between these to images and take absolute of difference value.
This should work for you.
You can send your sample images on amit.kenjale@gmail.com, I will check datatypes, color formats and sizes of your two images and suggest you better solution that will exactly match to resolve your problem.
[EDIT] Corrected Unit8 to uint8. There is no Unit8 data type.
Risposte (2)
SALAH ALRABEEI
il 5 Giu 2021
No you resize the image it takeout part of the pkls, so the size of the matrices will for sure be smaller. Thus u cannot find the absdiff
0 Commenti
Image Analyst
il 5 Giu 2021
Try this and see if it does what you want:
% Demo by Image Analyst
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
%--------------------------------------------------------------------------------------------------------
% READ IN IMAGE
folder = pwd;
baseFileName = 'cameraman.tif';
grayImage = imread(baseFileName);
%--------------------------------------------------------------------------------------------------------
% Display the image.
subplot(2, 2, 1);
imshow(grayImage, []);
axis('on', 'image');
title('Original Gray Scale Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
hFig = gcf;
hFig.WindowState = 'maximized'; % May not work in earlier versions of MATLAB.
drawnow;
% Get the dimensions of the image.
% numberOfColorChannels should be = 1 for a gray scale image, and 3 for an RGB color image.
[rows, columns, numberOfColorChannels] = size(grayImage)
if numberOfColorChannels > 1
% It's not really gray scale like we expected - it's color.
% Extract the red channel (so the magenta lines will be white).
grayImage = grayImage(:, :, 1);
end
% Reduce by half.
smallImage = imresize(grayImage, 0.5, 'nearest');
% Display the image.
subplot(2, 2, 2);
imshow(smallImage, []);
axis('on', 'image');
title('Small Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
drawnow;
% Grow by a factor of two.
grownImage = imresize(smallImage, 2, 'nearest');
% Display the image.
subplot(2, 2, 3);
imshow(grownImage, []);
axis('on', 'image');
title('Grown Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
drawnow;
% Find difference.
diffImage = imabsdiff(grayImage, grownImage);
% Display the image.
subplot(2, 2, 4);
imshow(diffImage, []);
axis('on', 'image');
title('Difference Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
drawnow;
% Get the mean difference
meanDiff = mean(diffImage(:))
message = sprintf('The mean difference is %.2f gray levels', meanDiff);
uiwait(helpdlg(message));
2 Commenti
Image Analyst
il 5 Giu 2021
If it does what you want and is acceptable, then please "Accept this answer".
If it does not do what you want, say what needs to be improved to do what you want and be acceptable.
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!