Detecting Cold Area in My Thermal Image

3 次查看(过去 30 天)
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 ??

回答(1 个)

KSSV
KSSV 2017-11-1
I = imread('FLIR0072.jpg') ;
I1 = rgb2gray(I) ;
[y,x] = find(I1<=15) ;
imshow(I)
hold on
plot(x,y,'.r')

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by