I'm trying to implement my own Histogram equalization without using the library routine for histogram equalization in opencv c++ 2.4.13.2 version. I compiled the program in terminal as follows:
g++ `pkg-config --cflags opencv` histogram_Equalization.cpp `pkg-config --libs opencv` -o histeq
i'm getting the errors as given below:
Here is the code of mine:
#include <opencv2/opencv.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include<opencv2/highgui/highgui.hpp>
#include<opencv2/core/core.hpp>
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
using namespace std;
using namespace cv;
Mat *calculateHist(Mat &M, Mat &He)
{
float P[256]={0};
int i, j, k, r;
float sum = 0.0;
float T[256]={0};
int S[256]={0};
for(i=0;i<M.rows;i++)
{
for(j=0;j<M.cols;j++)
{
int tmp = M.at<uchar>(i,j);
P[tmp] = P[tmp] +1; //[(M.at<uchar>(i,j))] + 1;
}
}
for (i=0;i<M.rows;i++)
{
for(j=0;j<M.cols;j++)
{
sum = sum + P[(M.at<uchar>(i,j))];
}
}
//int num_pixel = (M.rows)*(M.cols)
for(i=0;i<256;i++)
{
P[i] = P[i]/(sum);
}
T[0] = P[0];
for( k=1; k<256;k++)
{
T[k] = T[k-1] + P[k];
}
for( r=0; r< 256; r++)
{
S[r] = cvRound(T[r]*255);
}
for(i=0;i<M.rows;i++)
{
for(j=0;j<M.cols;j++)
{
r = M.at<uchar>(i, j);
He.at<uchar>(i,j) = S[r];
}
}
return (&He);
}
int main(int argc, char *argv[])
{
Mat image = imread(argv[1],0);
Mat He(image.size,image.type);
He = calculateHist(image, He);
imshow("original_image", image);
imshow( "histogram_equalized", He );
waitKey(0);
return 0;
}