Image subtraction in infrared images
1 回表示 (過去 30 日間)
古いコメントを表示
Welder_processing
2021 年 4 月 23 日
回答済み: Shadaab Siddiqie
2021 年 4 月 27 日
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 件のコメント
採用された回答
Shadaab Siddiqie
2021 年 4 月 27 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Modify Image Colors についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!