Image subtraction in infrared images
조회 수: 1 (최근 30일)
이전 댓글 표시
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!