I have been giving a task at my university to scale a Picture in openCV without using the resize function. I am having a very hard time understanding how I access each pixel and perform an operation on them. Keep in mind - this is my first time using OpenCV. I really hope you want and have time to help me. This is my code so far:
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/core.hpp>
#include <iostream>
#include <string>
#include <opencv2/imgproc/imgproc.hpp>
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
double inHeight;
double inWidth;
Mat src_img, scaled_img;
src_img = imread(argc >= 2 ? argv[1]: "gray_IMG.png",1);
if(!src_img.data || src_img.empty() )
cout <<"problem loading image" << endl;
cout <<"Resize your picture by typing in the wanted pixel values\n" <<endl;
cout <<"the current pixel value of the input image is:\n" << endl;
cout << src_img.rows << endl;
cout << src_img.cols << endl;
cout <<"\ntype in Height in Pixels here: "; cin >> inHeight;
cout <<"type in Witdh in pixels here; "; cin >> inWidth;
Mat dyImage(src_img.size(), src_img.type());
for(int y = 1; y < src_img.rows-1; y++)
{
Vec3b* prevRow = src_img.ptr<Vec3b>(y-1);
Vec3b* nextRow = src_img.ptr<Vec3b>(y+1);
for(int x = 0; y < src_img.cols; x++)
{
for(int c = 0; c < 3; c++)
dyImage.at<Vec3b>(y,x)[c] = saturate_cast<uchar>( nextRow[x][c] - prevRow[x][c]);
}
}
namedWindow("Scaled Output", CV_WINDOW_AUTOSIZE);
imshow("Scaled Output", scaled_img);
waitKey(0);
return 0;
}
IF I run the program it codeblocks crashes after the inHeight and inWidth has been typed in.
for(int x = 0; y < src_img.cols; x++), that is y when you want x. – remi Oct 15 '12 at 9:30