Mapping of temperature values on ROI of image
이전 댓글 표시
I had to find the required temperature values from my ROI in a thermal video. I extracted some frames and extracted the region of interested that is still in the form of pixels. Now I want to map temperature values to that ROI from my excel file that is basically extracted from the same frame. After that I have to test whether the values are exactly from the region of interest or not? Any idea about that or any example. Waiting for you kind response. Thanks
채택된 답변
추가 답변 (1개)
Image Analyst
2016년 12월 20일
Like I said in your duplicate post:
Not exactly sure what " Now I want to map temperature values to that ROI from my excel file that is basically extracted from the same frame" means but if your ROI is a binary image mask, you can do
thermalImage(mask) = someValue;
To see if some value is in your ROI, you can do this:
pixelsInROI = thermalImage(mask);
if max(pixelsInROI == someValue) == 1
% someValue is the value of at least one of the pixels.
else
% someValue is NOT the value of at least one of the pixels.
end
댓글 수: 7
Qazi Arbab Ahmed
2016년 12월 21일
편집: Qazi Arbab Ahmed
2016년 12월 21일
Qazi Arbab Ahmed
2016년 12월 21일
Qazi Arbab Ahmed
2016년 12월 22일
Image Analyst
2016년 12월 22일
Somehow you need to map your ROI values in your Excel file to pixels on the image. Now, I don't know if your ROI files are just a rectangle with a top row, bottom row, left column and right column (in which case you can use indexing), or if they are an irregularly-shaped region (in which case you'll need to use poly2mask). Perhaps if you attach one frame and the workbook (and tell me what cells in the workbook represent the ROI), I may be able to help.
Qazi Arbab Ahmed
2016년 12월 22일
편집: Qazi Arbab Ahmed
2016년 12월 22일
Image Analyst
2016년 12월 22일
편집: Image Analyst
2016년 12월 22일
Don't you have the original image? I don't want a screenshot with all that junk. Can't your camera save/export just the image only and not all that other unneeded stuff?
This link might interest you: http://www.mathworks.com/matlabcentral/answers/316839-how-to-detect-the-hottest-spot-in-a-thermal-video#comment_413976
Qazi Arbab Ahmed
2016년 12월 22일
카테고리
도움말 센터 및 File Exchange에서 ROI-Based Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
