Filter löschen
Filter löschen

Detecting Cold Area in My Thermal Image

3 Ansichten (letzte 30 Tage)
Tasneem Al-Tmimi
Tasneem Al-Tmimi am 1 Nov. 2017
Hello there, I have the image attached. It was taken with FLIR E5 I need to extract the blue area only for the purpose of detecting the defects. I have tried several ways but they are all not working with me unfortunately :(
Can any one help me here ??

Antworten (1)

KSSV
KSSV am 1 Nov. 2017
I = imread('FLIR0072.jpg') ;
I1 = rgb2gray(I) ;
[y,x] = find(I1<=15) ;
imshow(I)
hold on
plot(x,y,'.r')
  2 Kommentare
Tasneem Al-Tmimi
Tasneem Al-Tmimi am 1 Nov. 2017
Thank you, but what is 15 in
find(I1<=15)
Tasneem Al-Tmimi
Tasneem Al-Tmimi am 1 Nov. 2017
Actually it is not always working :)
But thank you

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by