Opencv程序在发布模式下不起作用

时间:2014-12-14 16:52:01

标签: c++ opencv release

我有一个程序,其中我试图查看图像是否为白色它在调试模式下工作但在发布时它不起作用

   int image_blanche(char * str, double prctage){
       Mat img=imread(str);
       int compt=0;
       for(int i=0;i<img.rows;i++){
            for(int j=0;j<img.cols;j++){
                if (img.at<uchar>(i,j)==0){
                compt=compt+1;
               }
           }
        }

        if (compt< img.rows*img.cols*prctage)
        {   
            return 1;
        }
       else if (compt> img.rows*img.cols*prctage){
            return 0;
       }
    }

0 个答案:

没有答案