diff options
author | JinweiClarkChao <[email protected]> | 2015-08-25 16:03:05 +0800 |
---|---|---|
committer | JinweiClarkChao <[email protected]> | 2015-08-25 16:49:50 +0800 |
commit | 66efed8b335610f9eae59fd3f52eccaffd7a6e0b (patch) | |
tree | a65d3ad57aa75d072b5f543fd5ea5c0a18a5c1ab /DCP/dcp_core.h | |
parent | f07885c1eb4c98dc52704517623b2e7df1ed616d (diff) | |
download | Dehaze-66efed8b335610f9eae59fd3f52eccaffd7a6e0b.tar.gz |
fix
Diffstat (limited to 'DCP/dcp_core.h')
-rw-r--r-- | DCP/dcp_core.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/DCP/dcp_core.h b/DCP/dcp_core.h index 85e4d59..658e461 100644 --- a/DCP/dcp_core.h +++ b/DCP/dcp_core.h | |||
@@ -4,11 +4,17 @@ | |||
4 | #include <opencv\cv.h> | 4 | #include <opencv\cv.h> |
5 | #include <opencv\highgui.h> | 5 | #include <opencv\highgui.h> |
6 | 6 | ||
7 | #include <iostream> | ||
8 | |||
9 | #include <cstdio> | ||
10 | #include <malloc.h> | ||
11 | |||
12 | #include "utility.h" | ||
13 | |||
7 | void CalcDarkChannel(IplImage *darkchannel, IplImage *input, int radius); | 14 | void CalcDarkChannel(IplImage *darkchannel, IplImage *input, int radius); |
8 | void CalcAirlight(IplImage *darkchannel, IplImage *input, double A[]); | 15 | void CalcAirlight(IplImage *darkchannel, IplImage *input, double A[]); |
9 | void CalcTransmission(IplImage *transmission, IplImage *input, double A[], int radius); | 16 | void CalcTransmission(IplImage *transmission, IplImage *input, double A[], int radius); |
10 | void CalcRecover(IplImage *result, IplImage *input, IplImage *transmission, double A[]); | 17 | void CalcRecover(IplImage *result, IplImage *input, IplImage *transmission, double A[]); |
11 | void GuidedFilterColor(IplImage *q, IplImage *II, IplImage *p, double eps, int r); | 18 | void GuidedFilterColor(IplImage *q, IplImage *II, IplImage *p, double eps, int r); |
12 | 19 | ||
13 | |||
14 | #endif \ No newline at end of file | 20 | #endif \ No newline at end of file |