私は次のコードに取り組んでいます:
#include <iostream>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
using namespace std;
using namespace cv;
void Sharpen(Mat &,Mat);
int main()
{
Mat image,result;
try
{
image = imread("C:/Users/Public/Pictures/Sample Pictures/Desert.jpg");
if(!image.data)
{
throw 1;
}
}
catch(int i)
{
cout << "Image is unable to reae" << endl;
}
Sharpen(image,result);
waitKey(0);
}
void Sharpen(Mat &image,Mat result)
{
//result = image.clone();
result.create(image.size(), image.type());
//For all rows except first and last
for(int i=1;i<image.rows-1;i++)
{
const uchar *previous = image.ptr<const uchar>(i-1);
const uchar *next = image.ptr<const uchar>(i+1);
const uchar *current = image.ptr<const uchar>(i);
uchar *output = result.ptr<uchar>(i);
//For all columns except first and last
for(int a=1;a<image.cols-1;a++)
{
*output++ = cv::saturate_cast<uchar>(5*current[a]-current[a-1]-current[a+1]-previous[a]-next[a]);
}
}
result.row(0).setTo(cv::Scalar(0));
result.row(result.rows-1).setTo(cv::Scalar(0));
result.col(0).setTo(cv::Scalar(0));
result.col(result.cols-1).setTo(cv::Scalar(0));
namedWindow("Original");
imshow("Original",image);
namedWindow("Duplicate");
imshow("Duplicate",result);
}
ここで私がやろうとしているのは、画像をシャープにすることです。以下は、画像のシャープ化の式です。
resultPixel = 5*currentPixel-previousPixel-nextPixel-upperPixel-belowPixel
とにかく、以下は私が得る出力です
ご覧のとおり、期待した結果が得られません。何が間違っていますか?