Azzera filtri
Azzera filtri

Detecting Cold Area in My Thermal Image

3 visualizzazioni (ultimi 30 giorni)
Tasneem Al-Tmimi
Tasneem Al-Tmimi il 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 ??

Risposte (1)

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

Accedi per commentare.

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by