How to convert multiple rgb snapshots into grayscale and save them into a folder?

7 Ansichten (letzte 30 Tage)
I've taken multiple rgb snapshots and saved them into the folder using for-loop. But now I need to know how those snapshots can be converted into grayscale and save them into a folder.
After the above has been done, I need to know how both of these (rgb and gray) can be subtracted so that the difference is spotted.
Please help. thank you very much in advance.

Akzeptierte Antwort

Image Analyst
Image Analyst am 23 Nov. 2014
Try this:
grayImage = rgb2gray(rgbImage);
diffGray = double(grayImage) - double(grayReferenceImage);
diffRGB = double(rgbImage) - double(rgbReferenceImage);
if max(abs(diffGray(:))) > 0
% There is at least one different pixel.
end
  13 Kommentare
Omar Ahmad
Omar Ahmad am 29 Nov. 2014
Bearbeitet: Omar Ahmad am 29 Nov. 2014
So to make the question short and simple. I want the result of diffGray converted into Binary and save it.By this I must be able to view in Black and White. Please help. This could be my last question. You (image analyst and Mohammed Abouali) helped me alot.
Image Analyst
Image Analyst am 29 Nov. 2014
OK, you want to binarize the difference signal by thresholding it and turning it into a logical array. So you can do something like
binaryImage = diffRGB > someValue; % Like 2 or 5 or whatever
Pick a value that you want to see if the difference is greater than. Like if the difference between the images is more than 3 gray levels, show it, otherwise consider them the same with essentially no difference at all.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by