Welcome![Sign In][Sign Up]
Location:
Search - mfc rgb

Search list

[Static controlRGB Editor

Description: This article demonstrates the technique of creating a RGB color editor, useful at web-page and software development time, to know the RGB code for different combinations of Red, Green and Blue colors. The article has two projects both independent, one was developed using the popular MFC and the other in Win32 (a.k.a. SDK). Both applications are identical in functionality and helps developers who are not very familiar with Win32 programming, to compare and see how easy it is to develop applications in Win32
Platform: | Size: 61954 | Author: gp | Hits:

[Windows DevelopCOLORSET

Description: Use MFC to do the color set tool. You can learn the RGB and MFC coding.
Platform: | Size: 21504 | Author: henryl | Hits:

[GUI DevelopMinBox

Description: 利用mfc的标准控件实现颜色的控制,颜色值由rgb值控制-use of the standard controls to achieve color control, color control by the rgb values
Platform: | Size: 1891328 | Author: 王回 | Hits:

[OtherRGB-HSI

Description: 这是一个实现从RGB到HSI的互换的程序,你可以将一个你所喜欢的bmp文件在本程序中转换。-This is a realization from RGB to the HSI Exchange of procedures, you can be one you like bmp file in the conversion process.
Platform: | Size: 3072 | Author: 王瑞 | Hits:

[GDI-BitmapAn HSVRGBA colour picker

Description: This colour picker allows you to easily choose a colour either using RGB or HSV, it includes an alpha slider (that can be disabled or hidden, if needed), and it displays the colour value in hexadecimal. The code is fully written using Windows API, without MFC.
Platform: | Size: 735232 | Author: gp | Hits:

[Static controlRGB Editor

Description: This article demonstrates the technique of creating a RGB color editor, useful at web-page and software development time, to know the RGB code for different combinations of Red, Green and Blue colors. The article has two projects both independent, one was developed using the popular MFC and the other in Win32 (a.k.a. SDK). Both applications are identical in functionality and helps developers who are not very familiar with Win32 programming, to compare and see how easy it is to develop applications in Win32
Platform: | Size: 61440 | Author: gp | Hits:

[assembly languageCircuit3

Description: 目标:手工选择视频图像上的待跟踪目标;利用块匹配的方法估计目标区域在下一帧图像中的位置;循环这个过程直到目标从图像帧中消失。 技术:avi视频流的帧读取;图像帧存储格式的了解;RGB图像的灰度化;灰度图象的平滑滤波;块运动估计算法的实现;使用MFC显示图像帧;MFC上鼠标事件的使用。 -objectives : manually select video images on the question target tracking; Use block matching methods for estimating the target region in the next frame image position; Until this process cycle from the goal frame images disappear. Technology : avi video streaming reading frame; Image frame storage formats; RGB images of gray; Gray image smoothing filter; Block motion estimation algorithm implementation; MFC showed images frame; MFC on the use of the mouse.
Platform: | Size: 110592 | Author: | Hits:

[GDI-Bitmap颜色模式

Description: 文件里包括颜色模式诸如RGB、CMYK、HSB等的相互转化代码,且提供了检验程序。-documents including color models such as RGB, CMYK, HSB the mutual conversion code, which provides inspection procedures.
Platform: | Size: 2516992 | Author: | Hits:

[OpenGL programThreeDimensionColorModel

Description: 这是 一个三维颜色模型的VC++下面的MFC程序,生成三维的RGB,HSL等模型,还可以进行旋转 -This is a three-dimensional color model VC++ Following MFC procedures, to generate three-dimensional RGB, HSL, such as the model can also be used for rotating
Platform: | Size: 23552 | Author: 王明 | Hits:

[Picture ViewerdisplayRGBfromRAW

Description: c++ mfc rgb reader可以用來讀取RAW檔案-c++ mfc rgb reader can be used to read RAW files
Platform: | Size: 28672 | Author: 詹包 | Hits:

[Picture Viewerjpeg_rgb

Description: 这是JPEG图像压缩的RGB转换的源代码,其中还包括了它的仿真测试代码,希望能帮助到大家。-This is the JPEG image compression of RGB conversion source code, including its simulation test code, hoping to help you.
Platform: | Size: 3072 | Author: mary | Hits:

[Special EffectsColorProcess

Description: VC++6环境编译的彩色数字图像处理程序。结合MFC形成独立可执行程序。具有功能:RGB三原色的提取和滤除,彩色位数转化,彩色图像的灰度化,颜色、亮度和对比度的调整-VC++6 compiler environment of the color digital image processing. Combined into an independent executable program MFC. Has a function: RGB three primary colors of the extraction and filtering, the median color transformation, color image of the gray-scale, color, brightness and contrast adjustment
Platform: | Size: 3632128 | Author: Myrrhy | Hits:

[Special Effectscolor2bw

Description: 图片处理啊,很好的MFC,rgb转换图片!!MFC技术啊!-Image processing ah, good MFC, rgb conversion pictures! ! MFC technology ah!
Platform: | Size: 1271808 | Author: asdf2d | Hits:

[GUI DevelopColor_rgb

Description: mfc通过滚动条控制RGB三种颜色,来对操作区的颜色进行改变-mfc RGB three colors of the scroll bar control to change the color of the operating area
Platform: | Size: 55296 | Author: zhou | Hits:

[Special EffectsRGB-HIS-and-grayscale

Description: 在VC6.0平台下,实现了基于MFC的24位彩色bmp位图的图像色彩空间变换(RGB->HIS、HIS->RGB)的算法程序,以及彩色图像灰度化的算法实现。-VC6.0 platform, MFC-based 24-bit color bmp bitmap image color space transform (RGB-> HIS, HIS-> RGB) algorithm program, grayscale and color images of the algorithm.
Platform: | Size: 65536 | Author: 李若 | Hits:

[Othermfc

Description: 独立开发一个MFC绘图程序,基于“文档-视图”结构,在客户区能够完成- void CDopicDlg::OnBnClickedQuse() { // TODO: 在此添加控件通知处理程序代码 CDC* m_dc CRect m_rect m_pic.GetClientRect(m_rect) m_dc = m_pic.GetDC() int r1,g1,b1,r2,g2,b2 for (int i = 1 i<m_rect.right+1 i++) for (int j = 1 j< m_rect.bottom+1 j++) { COLORREF color = m_dc->GetPixel(i,j) double m_gray r1 = GetRValue(color) g1 = GetGValue(color) b1 = GetBValue(color) m_gray = (0.38*r1+0.49*g1+0.1*b1) color = RGB(m_gray,m_gray,m_gray) m_dc->SetPixel(i,j,color) } }
Platform: | Size: 405504 | Author: 落雨軒囂 | Hits:

[Picture ViewerRGB

Description: RGB托盘带提示,用MFC开发的,适合新手学习控件的使用及对RGB的了解-RGB tray with prompt, developed with MFC, for novice to learn the use of control and understanding of the RGB
Platform: | Size: 3901440 | Author: 任红星 | Hits:

[Graph programrgb

Description: 像素RGB 图像像素提取 很好的MFC VC 程序-Pixel RGB image pixels extracted good MFC VC program
Platform: | Size: 5464064 | Author: 李恬恬 | Hits:

[Special EffectsRGBtoYUV

Description: 利用MFC将将rgb图像转换成YUV图像,比如4:2:2格式,4:2:0格式或者4:4:4-Using MFC rgb images into YUV image, such as 4:2:2 format, 4:2:0 format or 4:4:4
Platform: | Size: 17074176 | Author: | Hits:

[Windows DevelopRGB

Description: MFC实现可以载入图片并且分别做出图片三个通道的直方图。-MFC can load pictures and make pictures with three-channel histogram.
Platform: | Size: 2149376 | Author: 张昕 | Hits:
« 12 3 4 »

CodeBus www.codebus.net