我正在编写一个代码来为图像应用蒙版。 在编写代码的过程中,我意识到:
//applying a mask throughout the image using user defined function.
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
using namespace cv;
using namespace std;
void sharpen(Mat& src, Mat& dst)
{ cout<<"\n\nFunction just called\n\n";
/*for (int i=1; i<src.rows-1;i++)
{
for (int j=1; j<src.cols-1;j++)
{
//dst(i,j)=(-1*(src(i-1,j-1)+src(i-1,j)+src(i-1,j+1)+src(i,j-1)+src(i,j+1)+src(i+1,j-1)+src(i+1,j)+src(i+1,j+1))+8*src(i,j))/9;
}
}*/
dst=src;
imshow("src",src);
imshow("dst",dst);
//cout<<src;
}
int main()
{
Mat src,dst;
src=imread("/home/krishna/Downloads/door1.jpg", CV_LOAD_IMAGE_GRAYSCALE);
namedWindow("src",WINDOW_NORMAL);
namedWindow("dst",WINDOW_NORMAL);
cout<<"\n\nHi\n\n";
cout<<(int)src.at<uchar>(155,155);
//sharpen(src,dst);
//waitKey(-1);
return 0;
}
如果我取消评论waitKey
和/或sharpen()
,则无法打印(155,155)处的像素。我尝试更改src.at<>()
的数据类型,但徒劳无功......
答案 0 :(得分:1)
更改此行:
cout<<(int)src.at<uchar>(155,155);
由:
cout<<(int)src.at<uchar>(155,155)<<endl;
此std::endl
将插入换行符并刷新流。
您也可以使用std::flush
来刷新输出流。