【学习opencv第六篇】图像的反转操作

考试终于完了,现在终于有时间可以继续学习这个了。写这篇博客主要是因为以前一直搞不清楚图像数据到底是怎么存储的,以及这个step到底是什么,后来查了一下才知道原来step就是数据行的长度。。

 

#include "stdafx.h"
#include 
#include 
#include 
using namespace std;
int main()
{
	IplImage* sourceImage;     
	sourceImage= cvLoadImage("Hough.jpg",0);   
	/*以灰度图像读入	*/
	if(!sourceImage)
		return -1;
	//cout<<"successfully"<widthStep;
	int channels = sourceImage->nChannels;
	data = (char*)sourceImage->imageData;
	for(int i=0;iheight;i++)
		for(int j=0;jwidth;j++)
			for(int h=0;h

 

Reference:

《学习opencv》

 

 

你可能感兴趣的:(【学习opencv第六篇】图像的反转操作)