필터 지우기
필터 지우기

Combine RGB image and thermal image

조회 수: 1 (최근 30일)
Fabio Corres
Fabio Corres 2019년 3월 3일
댓글: Fabio Corres 2019년 3월 4일
Hey there,
I have 2 image one is RGB image the other one is its thermal version. I wanted to combine those 2 images. Thermal areas should be stay original RGB colors. In literature is there any special keyword to this operation. I search it on the IEEXPLORE and i didn't find it. I wanted to see some algoritms to implement it.
Thanks
  댓글 수: 2
Image Analyst
Image Analyst 2019년 3월 3일
There are an infinite number of ways you could "combine" them. For example you could add them, subtract them, divide them, etc. There is not just one way to combine them so until you explain what "combine" means to you, no one can answer.
The only way to "combine them" and have the thermal image "stay original" pseudocolored image colors is to not have the visible light image show up at all in the combination.
Fabio Corres
Fabio Corres 2019년 3월 4일
Thanks for the answer, i think merge is the right word to explain this operation. I found some articles and algorithms based on "Curvelet Transform" and it is good start for me.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2019년 3월 4일
combinedImage = RGBImage;
mask = repmat(ThermalImage >= some_threshold, 1, 1, 3);
combinedImage(mask) = repmat(ThermalImage(mask), 1, 1, 3);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by