搜索资源列表
opencv-ex2-2
- 本程序显示如何用C++类来创建和显示图像,这个C++类在 cxcore.hpp 中定义,与 矩阵类(CvMatrix) 相似 */
Filter(1)
- 这个也是用C++编写的图像处理程序,实现图像的种植滤波显示。
JPEG哈夫曼算法
- 这个是JPEG的C++语言编写的简单程序,是通过哈夫曼算法实现的-JPEG is the C language the simple procedure, through the Huffman Algorithm
Lighting
- 用c++的MFC,调用opengl函数库完成图形显示。这个为了演示光线。-With c++ The MFC, call completion opengl graphics library. This to demonstrate the light.
Texturetransparency
- 用c++的MFC,调用opengl函数库完成图形显示。这个为了演示透明质地。-With c++ The MFC, call completion opengl graphics library. This to demonstrate the transparent texture.
bitmapDis
- 此源码是基于VISUAL C++6.0的DIB位图的显示的一个经典的程序,我相信这个源码肯定会对大家的学习有帮助的。-This source is based on the VISUAL C++ 6.0 of DIB bitmap display a classic procedure, I believe that this source will certainly be everyone
nancy-articulated-humanoid-body
- 这个程序由B.Tordoff and W.Mayol在C. Ballreich的3Name3D基础上编写,实现静态姿势下仿人体铰接体。运行文件之后,可以通过"whos"查看,人体环节名称。 -This process by B. Tordoff and W. Mayol at C. Ballreich prepared on the basis of the 3Name3D, static postures achieve articulated body like the human bo
EdgeDetect
- 用Visual C++ 2008编写的显示图片的程序,用户可以在这个基础上进行灰度处理 边缘检测等~-Using Visual C++ 2008 to prepare the display picture of the process, the user can carry out on the basis of gray-scale edge detection, such as dealing with ~
tupianliulanqi
- 在C++程序中显示JPG或者GIF图像并不是十分容易,本文将针对这个问题讨论如何在MFC中显示JPG或者GIF图像。-C++ program in JPG or GIF images to display is not very easy, this article will discuss how to address this issue in JPG or GIF MFC to display images.
Rotatedll
- 这个代码演示了调用一个C语言编写的DLL如何旋转指定的图片(附C源代码),支持360度图片平滑旋转,掩码色改变,甚至可以调整图片透明度、亮度、色相、饱和度、大小缩放等图片常用的值。-This code demonstrates calling a DLL written in C language specifies how to rotate a picture (with C source code), to support a smooth 360-degree image rotatio
bmp24_2_bin_rgb565
- 一个将BMP888转换为BMP565的代码,这个是我自己写的,并日常在使用的工具.开发环境为Visual C++ 6.-A BMP888 BMP565 code, this is my own writing, and daily in the use of tools. Development environment for Visual C++ 6.
LImage-Base
- 这个程序是基于图像图像处理源码C++这个程序是基于图像图像处理源码C-This program is based on the image source image processing C++ This program is based on the image source image processing C++
JPG2RGB565
- JPG2RGB565 说明: 1.对于单片机而言有的时候需要显示图片,一般单片机为了节约资源采用的图片一般为RGB565格式, PC机上用的一般是RGB格式,也就是说PC机器上RGB(R,G,B)三个字节表示一个像素,单片机采 用两个字节表示一个像素,第一个字节的高5位表示R,第一个字节的低3位和第二个字节的高3位 表示G,第二个字节的低5位表示B 2.本程序支持JPG格式转为RGB565格式,显示在屏幕上或者用管道命令输出到一个文本文件 命令行:JPG2RGB
txjmjmyf
- 图像加密解密一法 这个程序的来源是《数字图像处理原理与实践——基于Virsual C++开发》(左飞 万晋森 刘航著)随书光盘中的一个程序。 只是原程序运行时速度很慢,我使用了多线程技术,并把像素调换变成块(8×8象素)调换,速度有了改善。-A method of image encryption and decryption Source of this program is digital image processing theory and practice-