aboutsummaryrefslogtreecommitdiff
blob: 7efeeb731248c0d95f7be6eecb09edd2e4c03525 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "dcp.h"

int main()
{
	IplImage *input = cvLoadImage("input.png");
	IplImage *result = cvCreateImage(cvGetSize(input), IPL_DEPTH_8U, 3);
	dehaze(result, input);

	cvNamedWindow("Result");
	cvShowImage("Result", result);
	cvWaitKey();

	return 0;
}
Powered by cgit v1.2.3 (git 2.41.0)