可能重复:
计数像素坐标 x 和 y
我正在尝试使用此代码对像素坐标值求和
这是代码
#include<cv.h>
#include<cvaux.h>
#include<highgui.h>
#include<iostream>
#include<cxtypes.h> // for cvarr
using namespace std;
void main()
{
IplImage* image;
int w,h;
char* filename;
filename="D:\\Recognition\\Image Crop\\7.jpg";
image=cvLoadImage(filename,0); //load image from file
// Get image attribute
w=image->width; //image width
h=image->height; //image height
cout<<"1. image width "<<w<<"\n2. image height "<<h<<" \n";
int Sx,Sy;
const CvArr* arr; // msh 3arf aih lzmtha
CvScalar se; // to store the num
//loop 3shan 23di 3ala kol pixel
for(int x=0;x<image->width;x++)
{
for(int y=0;y<image->height;y++)
{
se=cvGet2D(image,x,y);
Sx=se.val[y];
Sx+=Sx;
}
Sy=se.val[x];
Sy+=Sy;
}
cout<<"1. image width "<<w<<"\n2. image height "<<h<<" \n";
cout<<"3. sum x ="<<Sx<<"\n4. sum y ="<<Sy<<" \n";
}
此代码用于计数或获取图像中 x 和 y 的像素 P(x,y) 总和
这个输出是 width 和 height 的值,但不要计算 x 和 y 的值,并且在输出屏幕中超出范围
任何帮助
提前致谢 。