count像素坐标x和y

时间:2012-05-26 14:25:37

标签: c++ image opencv

我尝试使用此代码来总和图像中的像素坐标(x,y)

这是代码

#include<cv.h>
#include<cvaux.h>
#include<stdio.h>
#include<highgui.h>
#include<iostream>
#include<cxtypes.h> // for cvarr 
using namespace std;
// This program to count the pixel value in the gray image
void main()
{
    IplImage* image;
    int w,h;
    char* filename;
    filename="D:\\Recognition\\Image Crop\\7.jpg";
    image=cvLoadImage(filename,0); //for grayscal image
    // 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;
    CvScalar se; // to store the num
    for(int x=0;x>image->width;x++)
    {
        for(int y=0;image->height;y++)
        {
            se=cvGet2D(image,x,y);
            Sx=se.val[y];
            Sx+=Sx;
        }
        Sy=se.val[x];
        Sy+=Sy;
    }
    cout<<"3. sum x ="<<Sx<<"\n4. sum y ="<<Sy<<" \n";
}

我正在尝试计算像素坐标x和y的总和。

1 个答案:

答案 0 :(得分:0)

这些循环有什么用?

for(int x=0;x>image->width;x++)
{
    for(int y=0;image->height;y++)

应该是:

for(int x=0;x<image->width;x++)
{
    for(int y=0;y<image->height;y++)

正确?

另外,这是什么?:

        Sx=se.val[y];
        Sx+=Sx;

你正在重置Sx每次循环迭代然后加倍,但随后将该计算抛弃下一次循环迭代。与Sy相似的问题。

我鼓励您逐行查看您的计划,并在公开发布问题之前先考虑一下它的作用。