搜索资源列表
paintlib-2.5.0
- paintlib是一个可移植的用于图像加载、保存和处理的C++类库。可从BMP, GIF, JPEG, PCX, PGM, PICT, PNG, PSD, TGA, TIFF和WMF文件中加载图像,且可保存为BMP, JPEG, PNG和TIFF格式。既可通过在过滤器类中执行过滤, 也可通过直接访问位图来进行图像处理。提供了完整的C++源码。-paintlib is a transplant can be used to image loading, storage and handling o
图像文件操作库
- 这个类库可以处理BMP、GIF、PCX、TGA、JPG、TIF格式的图像文件,而且具有图像点处理、图像区域处理的功能,你所要做的只是调用函数而已,不必清楚这些图像文件的内部格式。-the library can handle BMP, GIF, PCX, TGA, JPG, TIF format image files, and images with point processing, image processing functions regional, you have to do it
CXImage1
- 描述了bmp,jpeg等格式图像的显示,处理-described bmp, jpeg image formats, processing
AutoTrace
- 转换位图文件到矢量图像文件的源代码,支持BMP, TGA, PNM, PPM, PGM, PBM的输入格式和Postscr ipt, svg, xfig, swf, pstoedit, emf, dxf, cgm等输出格式
1223
- 打开一个bmp图像文件,输出它的统计直方图
BMP
- BMP图象解析,分析了BMP图像的结构,并且用WORD形式做了总结。程序是用MFC做的。可以显示BMP图片,是一些基础知识点
bmp图像显示
- 一种简单的bmp图像显示程序,适合初学者学习参考
对图像MRIBrain_10.bmp进行锐化
- 使用edge函数,分别采用‘roberts’‘sobel’‘log’算子,对图像MRIBrain_10.bmp进行锐化,比较各个算子的效果并说明其原因。,Using the edge function, respectively ' roberts' ' sobel' ' log' operator, sharpening the image MRIBrain_10.bmp compare the effect of each operator and explain why.
writeDIB
- 本程序要构造的位图为24位bmp格式,通过直接为结构体BITMAPFILEHEADER和BITMAPINFOHEADER赋值的方式生成。本程序演示的功能比较片面,但也比较实用。如果面对大量的数据,特别是二维的数组,可以尝试将它们写成图像,这样有助于发现规律。 压缩包中还有几个关于结构体说明的文档,可帮助理解。-This procedure to construct the bit picture shows the 24-bit bmp format, through direct BITM
BitmapData
- 国产底层bmp图像处理类, 结构清晰、注释齐全, 功能是很多网上代码所没有的, 主要用于位图的找图找色, 编写自己的photoshop必备。感谢原作者的分享!-A bmp image processing delphi class Powered by Chinese, with clear structure and rem, used in finding /comparing color or block ..like photoshop, which not found in web.
BMAthen
- 先正确读取bmp图像然后将其转换为raw格式并存储-First read correctly BMP image and then convert them into raw format and stored
NMPNSLQ
- 用VC写的一个从YUV文件转换为BMP文件的图像程序-Using VC to write a program YUV file are converted into BMP image
559705
- 读取BMP图像的VC源代码,但读取后显示的是灰度的,-Read the BMP image of VC source code, but after reading the display is gray,
752173
- 该程序实现了bmp,jpeg图像的基本操作类库,也实现了对jpeg图像-The program implements the BMP, jpeg images of the basic operation of the class library, also realized the jpeg image
BMP
- windows bmp图像文件处理相关类,以及DIB类(bmp transform class and dib class)
C语言现实的图像处理(包含快速傅里叶变换)
- 这代码功能有:读入和保存文件头、读入和保存信息头、读入和保存像素数据、读入和保存位图、24位的位图转化为8位位图、8位位图转换为24位位图、图像的二值化、8位位图的Sobel边缘检测、8位位图的Laplace锐化、8位位图的中值滤波、分离与合并RGB矩阵、直方图均衡化 main.c是main函数的所在;BMP.h是对位图文件头和信息头,以及调色板等的类型的声明;function.h主要完成对位图的读写操作;algorithm.h主要完成对位图进行相关的算法的处理。