Clear Filters
Clear Filters

Detecting Cold Area in My Thermal Image

3 views (last 30 days)
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 ??

Answers (1)

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

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!