Borrar filtros
Borrar filtros

Mapping of temperature values on ROI of image

3 visualizaciones (últimos 30 días)
Qazi  Arbab Ahmed
Qazi Arbab Ahmed el 20 de Dic. de 2016
Comentada: Qazi Arbab Ahmed el 26 de Dic. de 2016
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

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Dic. de 2016
  15 comentarios
Image Analyst
Image Analyst el 26 de Dic. de 2016
The file didn't run because you swapped x and y.
Qazi  Arbab Ahmed
Qazi Arbab Ahmed el 26 de Dic. de 2016
please tell me how can I make video as per time from these frames. Thanks

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 20 de Dic. de 2016
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 comentarios
Image Analyst
Image Analyst el 22 de Dic. de 2016
Editada: Image Analyst el 22 de Dic. de 2016
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?
Qazi  Arbab Ahmed
Qazi Arbab Ahmed el 22 de Dic. de 2016
Thanks for code. My region of interest in this frame is a die. The Camera gives the .irdx video from which I exported .avi Video and then exported frames. I can extract a .bmp image that is the same that I sent you. There isn't any option to export certain region directly from camera software. But I have an option to select the region of Interest to see the temperature values and I can also see the pixel position from where I can get the X and Y coordinates. The temperature values in excel also exported from frame that I sent you, could also be used to find the region of Interest. Can I extract region of interest from the values in excel without any image? Is it possible to draw image from these values of region of interest and then plot w.r.t time to get video? Thanks again

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by