登录
首页 » Visual C++ » 利用C++实现了BMP图像的读入和显示 BMPCode

利用C++实现了BMP图像的读入和显示 BMPCode

于 2013-06-25 发布 文件大小:2290KB
0 479
下载积分: 1 下载次数: 2

代码说明:

  利用C++实现了BMP图像的读入和显示利用C++实现了BMP图像的读入和显示利用C++实现了BMP图像的读入和显示(Use C++ achieve the BMP image to read and display BMP images using the C++ achieve to read and display BMP images using the C++ achieve to read and display)

文件列表:

BMPCode
.......\bmp.cpp,2178,2007-10-09
.......\BmpDisplay
.......\..........\Bmp.cpp,2182,2010-09-28
.......\..........\BmpDisplay.aps,28588,2007-09-13
.......\..........\BmpDisplay.clw,2321,2007-09-13
.......\..........\BmpDisplay.cpp,4281,2007-09-13
.......\..........\BmpDisplay.dsp,4699,2007-09-13
.......\..........\BmpDisplay.dsw,543,2007-09-13
.......\..........\BmpDisplay.h,1400,2007-09-13
.......\..........\BmpDisplay.ncb,189440,2012-08-02
.......\..........\BmpDisplay.opt,56832,2012-08-02
.......\..........\BmpDisplay.plg,1238,2008-09-16
.......\..........\BmpDisplay.rc,10609,2007-09-13
.......\..........\BmpDisplayDoc.cpp,2102,2007-09-13
.......\..........\BmpDisplayDoc.h,1572,2007-09-13
.......\..........\BmpDisplayView.cpp,3500,2008-09-16
.......\..........\BmpDisplayView.h,1955,2007-09-13
.......\..........\Debug
.......\..........\.....\Bmp.obj,4460,2007-10-09
.......\..........\.....\BmpDisplay.exe,118887,2008-09-16
.......\..........\.....\BmpDisplay.ilk,311240,2008-09-16
.......\..........\.....\BmpDisplay.obj,22918,2007-09-13
.......\..........\.....\BmpDisplay.pch,5494424,2007-09-13
.......\..........\.....\BmpDisplay.pdb,435200,2008-09-16
.......\..........\.....\BmpDisplay.res,7356,2007-09-13
.......\..........\.....\BmpDisplayDoc.obj,15389,2007-09-13
.......\..........\.....\BmpDisplayView.obj,20833,2008-09-16
.......\..........\.....\MainFrm.obj,19678,2007-09-13
.......\..........\.....\StdAfx.obj,105413,2007-09-13
.......\..........\.....\vc60.idb,222208,2008-09-16
.......\..........\.....\vc60.pdb,364544,2008-09-16
.......\..........\MainFrm.cpp,2511,2007-09-13
.......\..........\MainFrm.h,1581,2007-09-13
.......\..........\ReadMe.txt,4407,2007-09-13
.......\..........\res

.......\..........\...\BmpDisplay.rc2,402,2007-09-13


.......\..........\Resource.h,498,2007-09-13
.......\..........\StdAfx.cpp,212,2007-09-13
.......\..........\StdAfx.h,1054,2007-09-13
.......\读入和显示Bmp文件的Mini代码.doc,37888,2008-09-09

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ImageProcess
    用mfc编程实现数字图像处理的一些简单操作,只能处理bmp格式图片。调节对比度、亮度、边缘检测等。(Mfc programming with some simple digital image processing operations, can only deal with bmp format images. Adjust contrast, brightness, edge detection.)
    2011-06-28 01:22:34下载
    积分:1
  • one-based
    一种基于背景减法和帧差的运动目标检测算法(Based on background subtraction and frame difference moving target detection algorithm)
    2013-07-31 09:12:36下载
    积分:1
  • chenggongchengxu
    rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
    2011-12-02 10:09:24下载
    积分:1
  • vc-driven-camera-capture-images
    该文档的主要功能就是利用vc编写一段代码实现摄像头采集图像。(The main function of the document is vc write a piece of code to achieve the camera capture images.)
    2013-04-02 10:43:48下载
    积分:1
  • DIP_vc
    用c语言编写的数字图像处理程序,图像读取,图像增强,图像复原,傅里叶变换,离散余弦变换都有(With the c language digital image processing, image scanning, image enhancement, image restoration, Fourier transform, discrete cosine transform has)
    2013-11-30 20:23:27下载
    积分:1
  • SARViewer
    通过GDAL读取常用遥感影像,如img,tiff,可实现读取显示和雷达影像处理的一些基本算法(Read through GDAL common remote sensing images, such as img, tiff, read the display and radar can achieve some of the basic image processing algorithms)
    2013-08-03 19:39:01下载
    积分:1
  • VCPP-image-processing-chapter04
    VisualC++数字图像处理技术详解第2版光盘-第四章(VisualC++ digital image processing technology Detailed Version 2 CD- Chapter Four)
    2016-04-16 13:23:00下载
    积分:1
  • Bresenham
    bresenham画直线,WIN32,计算机图形学基础类源代码(bresenham画直线)
    2009-03-13 01:17:52下载
    积分:1
  • 91738645WaterShed
    分水岭算法的实现,用VC++语言实现,构成可靠的算法实现(the implement of the watershed)
    2013-07-17 09:19:23下载
    积分:1
  • DepthBasics-D2D
    使用KINECT获取深度图像的源码,在vs平台下使用C++编写。(Use KINECT obtain depth image source, written using C++ in vs internet.)
    2015-06-18 10:27:05下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载