Matlab中的红外图像处理 [英] Infrared image processing in Matlab

查看:490
本文介绍了Matlab中的红外图像处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Matlab中处理红外成像.任何类型的处理或技术. Matlab中有内置功能吗? 谁能建议任何书籍或文章,以及用于样本远红外图像的资源.

谢谢!

解决方案

您可能想看看,然后开始查看与您的特定应用程序相关的点击量.

通常,红外图像的处理与其他灰度图像的处理没有什么不同.您采用哪种特定算法在很大程度上取决于图像和处理目的.

i would like to process infrared imaging in Matlab. Any kind of processing or techniques. Is there any built-in function in Matlab? And can anyone suggest any books or articles,as well as resources for sample Far Infrared images.

Thanks!

解决方案

You may want to have a look at the image processing toolbox. There, you find plenty of built-in functionality for denoising and segmentation of any kind of images.

For more detailed answers, I suggest that you let us know in more detail what kind of processing that you want to do.

EDIT

Infrared images are normally grayscale images. Thus, it is very straightforward to false-color them by mapping the gray levels to colors (i.e. by applying a different colormap).

%# load a grayscale image
img = imread('coins.png');

%# display the image
figure
imshow(img,[]);

%# false-color
colormap('hot')

For more information about general techniques, you may want to Google 'infrared image processing' and start looking at the hits related to your specific application.

In general, processing of infrared images is not different from processing other grayscale images. What specific algorithms you apply depends very much on the image and the purpose of the processing.

这篇关于Matlab中的红外图像处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆