搜索资源列表
BMP位图文件程序
- 手把手教你了解BMP图形文件结构,C语言文件读写函数应用,一般数据处理方法,如果看不懂,说明我写的还不够具体,以后继续改进.-Maxivista you know BMP graphics structure of the document, document literacy C language function applications, generally data processing methods, if they did not understand that I was als
ZHG-bmp-maker
- 本软件(ZHG制图工具)由ZHG用C/C++开发,可用来进行简单画图、查看由本软件制作的图形文件以及使用配套函数show_bmp在C语言程序中直接使用已画好的图形。具体操作如下: 1.主界面上方为菜单栏,左边为工具栏。要使用请单击“新建”或“打开”按钮,退出可单击右上角椭圆。 2.进入后,可单击工具栏选择画笔、规则图形及颜色。左击图形库,画实线图,右击可画虚线图。在编辑区中,用左键拖动鼠标为画笔画图,右键拖动可画规则图形。(建议下载到D盘,并先阅读说明文件。) -the software
coolminicad
- 一个不错的C语言程序,利用了鼠标,图形,文件等编程。代码高效。-a good C Programming Language, using a mouse, graphics, documents and other programming. Efficient code.
Windows_Paint
- C++课程设计时做的一个基本图形处理软件,由C++语言编写而成,使用了基本的Graphics.h库文件,自己定义的基本图形类及其操作。可以实现类似Windows\"画图\"的基本功能操作: 能够处理整体或单个图形的左移、右移、上移、下移,放大、缩小、删除、保存、读取等操作。可以设置线型的粗细,可以设置画线的颜色,整个界面都和Windows很相似,菜单,鼠标,键盘,快捷键,等。
graph
- (1).用Bresenham算法绘制直线. (2).用Bresenham算法画图. (3).用打点(如:C语言的putpixel())法显示汉字,汉字库以文件形式保存,以图形方式显示汉字. (4).在二维空间绘制一个多边形(三角形,四边形任选),然后实施平移变换,对称变换和旋转变换,
C 语言直接写 DWG 图形文件接口
- C语言直接写DWG图形文件接口-C language directly write DWG graphics interface
二次B样条曲线的绘制
- 从用c语言编出程序要用文件输入数据。 绘制二次B样条曲线的表达式: P(0,2)(t)=P0*G(0,2)(t)+P1*G(1,2)(t)+P2*G(2,2)(t) 0<=t<=1-from using language out to document procedures with the input data. Drawing II B-spline curves of expression : P (0,2) (t) = P0 * G (0,2) (t) * G P1 (1,2
CIMG
- C语言开发TIFF图形文件处理程序源代码内有详细说明-source code programmed with c language for graphics file manipulation.There is also detailed specification for it
TC-OREL
- C语言写的椭圆程序,用TC环境下的绘图的头文件,很小的代码,保存在TXT中。-using the C-language to discribe the orel picture ,using the special head from the TC.
Draw
- Windows系统自带的画图板简单灵巧,为用户的小型图形开发工作带来了很多便利。本实验完全利用C语言开发了一个画图板,该画图板具有画图、调整图形大小与方位、保存与打开文件等基本图能。-Windows system comes with the drawing board is a simple, smart, and brought a lot of small graphics development work for the user s convenience. In this stud
EasyX_20140321(beta)
- 该文件内置针对C语言程序的画图函数库,能够解决一般的作图需要,弥补了C语言作图方面的缺陷。-The built-in file for C language program drawing function library to solve common mapping needs to make up for the shortcomings of C language mapping area.
DBOTPZC
- 是专门用于对C语言文件自动提取显示所需要的汉字,进行点阵码数据转换的-Is specially designed for C language files automatically extracted according to the need of Chinese characters, to convert the lattice code data
C语言现实的图像处理(包含快速傅里叶变换)
- 这代码功能有:读入和保存文件头、读入和保存信息头、读入和保存像素数据、读入和保存位图、24位的位图转化为8位位图、8位位图转换为24位位图、图像的二值化、8位位图的Sobel边缘检测、8位位图的Laplace锐化、8位位图的中值滤波、分离与合并RGB矩阵、直方图均衡化 main.c是main函数的所在;BMP.h是对位图文件头和信息头,以及调色板等的类型的声明;function.h主要完成对位图的读写操作;algorithm.h主要完成对位图进行相关的算法的处理。