搜索资源列表
fileapp
- 将位图转换成 ASCII码 读文件源码部分-will bitmap into ASCII source of reading documents
pic2acsii
- 能够把一个图片还原成ASCII码进行输出的操作,并且写入文件-Able to restore an image to ASCII code output operation, and write files
bmp2dat
- matlab中的一个将bmp文件读为ascii数据的文件,实现图像数字化-this file reads a bmp file to a ascii data file,and can show the original bmp by the saved data file
bmp_to_ppma
- 图像处理程序。把bmp格式的图像转换成ppm文件。-It is a C++ program which converts a Microsoft BMP file to an ASCII Portable Pixel Map (PPM) file.
中值滤波
- 给定一幅单波段影像imgData.txt(ASCII格式),实现对图像的处理和显示。 已知条件: (1)clrTbl.txt文件是一个颜色查找表,大小是256X3,即可表示256中RGB的颜色。 (2)ImgData.txt文件中是图像的数据,每个值代表一个像素的颜色索引号,通过索引号到颜色查找表(clrTbl.txt文件)中找到相应的RGB颜色值。 (3)中值滤波:一种非线性平滑技术,它将每一像素点的灰度值设置为该点某邻域窗口内(这里选择3X3)的所有像素点灰度值的中值。 (4)屏幕上显示像素