qin094 发表于 2006-3-19 14:42

数字图象处理小问题

   各位高手,可以帮帮忙吗?<BR>  怎么才可以 .BMP格式的图象进行去噪或增强时啊<BR>  在书中的事例都是对 .tif格式的<BR>   <BR> 

[ 本帖最后由 lxq 于 2006-12-21 11:46 编辑 ]

happy 发表于 2006-3-19 15:53

回复:(qin094)数字图象处理小问题

inread<BR>rgb2gray<BR>double<BR>然后滤波

fm931 发表于 2006-3-25 20:56

要先进行图像格式的转换

yxn2000 发表于 2006-3-30 10:14

先转化成double用rgb2gray实现

superin_2002 发表于 2006-12-20 21:44

不用管图象的格式,你就直接在读入的时候读入BMP 格式的文件,然后就可以加噪声和去噪声了.

kwfv 发表于 2006-12-21 21:40

傅里叶变换imshow()

imshow(A,[])中的[]是什么意思?为什么要用[];

请赐教。

renrj 发表于 2006-12-22 16:55

IMSHOW(I,) displays I as a grayscale intensity
    image, specifying the data range for I. The value LOW (and
    any value less than LOW) displays as black, the HIGH (and any
    value greater than HIGH) displays as white, and values in
    between display as intermediate shades of gray. IMSHOW uses
    the default number of gray levels. If you use an empty matrix
    ([]) for , IMSHOW uses ; the
    minimum value in I displays as black, and the maximum value
    displays as white.
页: [1]
查看完整版本: 数字图象处理小问题