搜索资源列表
ex11
- 这个程序演示了通过矩形裁剪函数制造百叶窗效果显示位图-demonstration of the process of cutting through the rectangular function manufacture blinds effect Bitmap
16位图显示
- 该程序实现的是16色位图的显示,对其他色的位图的显示也具有参考价值-the program is the 16-color bitmap display, the other color bitmap display also reference value
FLibDEMO
- VC实现的图象读取,特效,显示封装库FLib及DEMO源代码。-VC read images, special effects, show package for FLib and DEMO source code.
RotateBmp
- 可载入bmp图档 并且调整旋转角度,经过程式运算即可显示旋转后的结果在画面中-bmp image files can be printed and rotation angle adjustment, after computing program can show the results of rotating the picture
readDIB
- 利用VC编写的位图读取与显示的程序。通过调试,保证正常运行。-VC prepared by the bitmap read and display procedures. Through debug, and ensure normal operation.
VSP_SE
- 自己编写的一个VC++程序,打开可执行程序后可以读取wave文件,此时程序将在客户区绘制波形图;之后可以计算短时能量、短时过零率和自相关函数,并且在客户区依次显示函数图像。-own VC prepared by a procedure to open executable wave after reading documents, this process will draw customers District waveform diagram; after short-term energy
Gaphics
- 我是一名大学的学生,我没有做过很复杂的编程练习,这也是我第一次上传源程序,这次上传的是我做计算机图形学的练习时在WIN-TC环境下所编的一些程序,其中有二维图形的基本变换(平移,旋转,错切,放缩,对称)的动画演示、三维图在二维平面上的消隐图的显示、线条的裁减、抛物线的绘制以及B样条曲线的绘制,程序中有详细的注释,希望对学生朋友们能够有所帮助。-I was a university student, I had not done a very complex programming exercis
20060816
- 图像处理算法源程序.pdf,包含: 利用Visual C++实现AVI文件的图像截取 Visual C++中实现对图像数据的读取显示 Visual C++实现视频图像处理技术 VC编程中如何操作数据库中的图像字段 Visual C++实现数字图像增强处理 Visual C++6.0开发灰度位图处理 VC++开发腐蚀运算源程序 VC++开发膨胀运算源程序 VC++开发细化源程序 VC++开发Hough变换的源程序 VC++开*廓提取源程序 堆
ShowXYZ
- 在VC++环境下,直接读取点数据,并显示成图,有实验数据,适合初学者.-in VC environment, directly read data, and the map and show that the experimental data, for beginners.
BitmapDisplay
- 采用Visual C++6.0编写,将一个位图文件显示出来,并用A\\D\\S\\W键控制场景移动。对于想学习游戏编程的同学会有一定帮助。
easygis
- 在vc++ 环境下对mapinfo的mif mid数据格式的文件进行操作 (本程序附带部分数据方便大家学习) 本程序不仅对道路、 等高线、 电力层、 独立地物、居民地、水系、图廓线等图层进行显示,而且实现了 缩放 漫游 开窗放大等基本的功能.是研究mapinfo数据格式的一个很好参考源码。-vc environment in the mid mif MapInfo data format for the paper operations (the procedure incidental
BitmapTitle
- 将程序生成的标题栏改成用位图显示,最大化最小化关闭按钮用两张图代替,鼠标放上去变亮,界面比较漂亮-procedures to generate the column heading into use bitmap and maximize the smallest of the closure with two buttons instead of the map, Mouse is entered lit, the more beautiful interface
BMPFILE
- 位图读取+距离变换+位图显示,带有中点画线算法
DisplayBMP
- 显示图片,基本上可以实现基本的位图显示 还可以显示不同格式的位图信息-Show pictures, basically to achieve the basic bitmap display can also show different bitmap format information
MAPREAD
- 数字化图形分层显示,实现基本的选择及操作,以及量测功能-Layered digital graphic shows that the realization of the basic options and operations, as well as the measurement function
picture
- 讲解建立图像显示界面的源码,比较简单的位图显示程序-Explain the establishment of the source image display interface
DrawPie_V2
- 从数据库中获取CPU和内存状态数据,通过数学计算绘制二维饼图显示。-CPU and memory state data retrieved from the database, through mathematical calculations to draw two-dimensional pie chart display.
jpeg
- 用于jpeg图像的读取,以及对于图像的位图显示,其中的算法已经列在代码里面-jpeg processor
Big_Disp_Dlg
- 自动机器视觉,通过拼接72张1M图像,拼接成整体大图显示-computer vision
用python显示图像直方图
- 我们要对图像求直方图,就需要先把图像矩阵进行flatten操作,使之变为一维数组,然后再进行统计。 一、画灰度图直方图 绘图都可以调用matplotlib.pyplot库来进行,其中的hist函数可以直接绘制直方图。