CImage访问像素及其像素操作总结
MSDN的代码
- COLORREF pixel;
- int maxY = imgOriginal.GetHeight(), maxX = imgOriginal.GetWidth();
- byte r,g,b,avg;
- for (int y=0; y<maxY; y++) {
- for (int x=0; x<maxX; x++) {
- pixel = imgOriginal.GetPixel(x,y);
- r = GetRValue(pixel);
- g = GetGValue(pixel);
- b = GetBValue(pixel);
- avg = (r+ g+ b)/3;
- imgOriginal.SetPixelRGB(x,y,avg,avg,avg);
- }}
这种方式效率很低, 因为每次调用getpixel,都包含着程序的进栈和出栈。所以,面对大量需要处理的数据,采用直接访问内存地址的方法。
- byte* pRealData;
- pRealData=(byte*)imgOriginal.GetBits();
- int pit=imgOriginal.GetPitch();
- int bitCount=imgOriginal.GetBPP()/8;
- for (int y=0; y<maxY; y++) {
- for (int x=0; x<maxX; x++) {
- int grayVal=(int)(int)(*(pRealData + pit*y + x*bitCount))*0.3
- + (int)(int)(*(pRealData + pit*y + x*bitCount +1))*0.59
- + (int)(int)(*(pRealData + pit*y + x*bitCount +2))*0.11;
- *(pRealData + pit*y + x*bitCount)=grayVal;
- *(pRealData + pit*y + x*bitCount +1)=grayVal;
- *(pRealData + pit*y + x*bitCount +2)=grayVal;
- //如果是8位灰度图像,直接读取一个BYTE位为灰度值
- //如果是24位RGB图像,则依次读取pixAddr,pixAddr+1,pixAddr+2为B、G、R分量值
- }}
用两种方法对同一张图片(3264*2448像素)进行处理,前者需要1分钟,后者只需1秒左右。
所以,后者比前者至少快60倍
直接访问内存地址的另一种方式:
int i,j,temp;
int pixel[4];
int width = yuantu.GetWidth();
int height = yuantu.GetHeight();
int widthBytes = yuantu.GetPitch();
bianyuantu.Create(width,height,yuantu.GetBPP()); if(yuantu.IsIndexed())
{
yuantu.GetColorTable(0,256,colorTable);
bianyuantu.SetColorTable(0,256,colorTable);
}
BYTE *pYuantuData = (BYTE*)yuantu.GetBits();
BYTE *pBianyuantuData =(BYTE*)bianyuantu.GetBits(); for(j=0;j<height-1;j++)
{
for(i=0;i<width-1;i++)
{
pixel[0]=pYuantuData[j*widthBytes+i];
pixel[1]=pYuantuData[j*widthBytes+i+1];
pixel[2]=pYuantuData[(j+1)*widthBytes+i];
pixel[3]=pYuantuData[(j+1)*widthBytes+i+1];
temp=(int)sqrt((double)((pixel[0]-pixel[3])*(pixel[0]-pixel[3])
+(pixel[1]-pixel[2])*(pixel[1]-pixel[2]))); //罗伯特算子
pBianyuantuData[j*widthBytes+i]=temp;
}
}
彩色图像转化为灰度图的处理方式
//真彩色图像变为灰度图,直接修改像素点的值
- void PixelsChangedToGray(CImage *pImage)
- {
- int nByte,j,i,nWidth,nHeight,nBytesPerPixel;
- BYTE *pPixelLine,cNewPixelValue;
- nWidth=pImage->GetWidth(); nHeight=pImage->GetHeight();
- nBytesPerPixel= pImage->GetBPP()/8;
- for (i=0;i<nHeight;i++){
- pPixelLine =(BYTE*) pImage->GetPixelAddress(0,i);
- nByte=0;
- for (j=0;j<nWidth;j++){ cNewPixelValue=(BYTE)(0.11*pPixelLine[nByte]
- +0.59*pPixelLine[nByte+1]
- +0.30*pPixelLine[nByte+2]);
- pPixelLine[nByte] = pPixelLine[nByte+1] = pPixelLine[nByte+2]
- = cNewPixelValue;
- nByte+=nBytesPerPixel;
- }
- }
- }
//非真彩色图像变为灰度图,修改调色板信息
- void PaletteChangedToGray(CImage *pImage)
- {
- RGBQUAD ColorTabs[256];
- int i,nColorTableEntries,nNewGrayColor;
- nColorTableEntries=pImage->GetMaxColorTableEntries();
- pImage->GetColorTable(0,nColorTableEntries,ColorTabs);
- for (i=0;i<nColorTableEntries;i++){
- nNewGrayColor=(int)(0.11*ColorTabs[i].rgbBlue
- + 0.59*ColorTabs[i].rgbGreen
- + 0.30*ColorTabs[i].rgbRed);
- ColorTabs[i].rgbBlue = (BYTE)nNewGrayColor;
- ColorTabs[i].rgbGreen = (BYTE)nNewGrayColor;
- ColorTabs[i].rgbRed = (BYTE)nNewGrayColor;
- }
- pImage->SetColorTable(0,nColorTableEntries,ColorTabs);
- }
CImage访问像素及其像素操作总结的更多相关文章
- OpenCV(2)-Mat数据结构及访问Mat中像素
Mat数据结构 一开始OpenCV是基于C语言的,在比较早的教材例如<学习OpenCV>中,讲解的存储图像的数据结构还是IplImage,这样需要手动管理内存.现在存储图像的基本数据结构是 ...
- SNMP 原理及配置简述 net-snmp-utils net-snmp 第2版基于SNMP 群体名(community name) 第3版引入了安全性更高的访问控制方法 SNMP协议操作只有4种 Apache的php_snmp 模块
SNMP 原理及配置简述 net-snmp-utils net-snmp 第2版基于SNMP 群体名(community name) 第3版引入了安全性更高的访问控制方法 SNMP协议操作只有4种 ...
- C# 委托 / 跨线程访问UI / 线程间操作无效: 从不是创建控件“Form1”的线程访问它
C# 委托 / 跨线程访问UI / 线程间操作无效: 从不是创建控件“Form1”的线程访问它 网上的代码都比较复杂,还是这个简单 见代码, 简易解决办法: 主窗体代码 using System; ...
- ADO.NET访问Access(文本数据库)数据操作(CRUD)
1,ADO.NET访问Access(文本数据库)数据操作(CRUD) 2,DatabaseDesign 文本数据库Northwind.mdb 3,/App_Code 3.1,/App_Code/DBC ...
- GG_DataAccess 数据库访问层使用dapper操作
3.5.GG_DataAccess 数据库访问层使用dapper操作 和Model实体类同理,tt模板已写好,需要的可加qq群:547765059 自己下载.
- 《OpenCV3编程入门》访问图像中像素的三类方法
·方法一 指针访问:C操作符[ ]; ·方法二 迭代器iterator; ·方法三 动态地址计算; #include <opencv2/core/core.hpp> #include &l ...
- 通过一个小Trick实现shader的像素识别/统计操作
2018/12/14日补充:后来发现compute shader里用AppendStructuredBuffer可以解决这类问题,请看这里:https://www.cnblogs.com/hont/p ...
- opencv 中对一个像素的rgb值或像素值进行操作的几个常用小办法【转】
You can access the Image pixels in many ways:1. One using the Inbuilt macro2. One using the pointer ...
- OpenCV 学习笔记(11)像素级别指针操作
//优化两图的连接处,使得拼接自然 void OptimizeSeam(Mat& img1, Mat& trans, Mat& dst) { int start = MIN(c ...
随机推荐
- 使用idea导入远程git版本库项目
1.选择git方式导入 2.设置远程git项目地址 3.测试是否连接成功 4.选择yes,检查项目 5.如果有下一步,直接next下去就可以了.
- [YNOI 2016] 掉进兔子洞
[题目链接] https://www.lydsy.com/JudgeOnline/problem.php?id=4939 [算法] 不难发现 , ansi = (r1 - l1 + 1) + (r2 ...
- 使用基于Caffe的MobileNet分类踩坑备忘录
首先要帮Caffe甩个锅:Caffe对图像处理进行了很高明的封装,以protobuffer形式组织的搭积木式的网络构建也很灵活方便,这里的坑都是自己腿不好,走路不稳崴进去的. 1. Caffe的一个i ...
- ajax展示新页面同时传递参数
HTML页面部分代码: <div id="course" hidden></div> HTML页面中ajax代码: var selectType=$(&qu ...
- 3.4-3.6 Hive Storage Format
一.file format ORCFile在HDP 2:更好的压缩,更好的性能: https://zh.hortonworks.com/blog/orcfile-in-hdp-2-better-com ...
- flex设置默认字体为微软雅黑
必须使用英文名称 Microsoft YaHei 否则有些系统不识别
- vijosP1286座位安排(状压DP)
传送门 题意 计算\(C_{n*m}^k/可行方案数\) 分析 定义dp[i][j][k]为第i行用过人数为j个且第i行状态为k的方案数 转移方程:dp[i][j][k]=Σdp[i-1][j-num ...
- php 发送邮件(实例)
html部分 <!DOCTYPE html> <html> <head> <title></title> <script type=& ...
- Metabolic and gut microbial characterization of obesity-prone mice under high-fat diet (文献分享一组-赵容丽)
题目:高脂饮食下易肥胖小鼠的代谢和肠道微生物特性研究 Metabolic and gut microbial characterization of obesity-prone mice under ...
- html中id name class的区别(转)
HTML 中 id与name 区别 一个name可以同时对应多个控件,比如checkbox和radio 而id必须是全文档中唯一的 id的用途 1) id是HTML元素的Identity,主要是在客户 ...