Image subtraction in infrared images
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Welder_processing
am 23 Apr. 2021
Beantwortet: Shadaab Siddiqie
am 27 Apr. 2021
How to subctract images in a sequence of images in RGB colors?
I need to enhance a sequence of thermographyc images and I would like to subtract the first capture from the all others.
0 Kommentare
Akzeptierte Antwort
Shadaab Siddiqie
am 27 Apr. 2021
From my understanding you want to substract two images. You can simply do
a = imread('image1.jpg');
b = imread('image2.jpg');
SubImage = double(a) - double(b);
imshow(SubImage, []);
If in case you want to substract with all the images just do it using a for loop.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Modify Image Colors 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!