Fix Java API build
authorAndrey Kamaev <andrey.kamaev@itseez.com>
Tue, 21 Aug 2012 14:34:02 +0000 (18:34 +0400)
committerAndrey Kamaev <andrey.kamaev@itseez.com>
Tue, 21 Aug 2012 14:34:02 +0000 (18:34 +0400)
modules/photo/include/opencv2/photo/denoising.hpp
modules/photo/include/opencv2/photo/photo.hpp

index 1fc35a6..718c3b7 100644 (file)
@@ -59,18 +59,18 @@ CV_EXPORTS_W void fastNlMeansDenoising( InputArray src, OutputArray dst,
                                         int templateWindowSize, int searchWindowSize, int h);
 
 CV_EXPORTS_W void fastNlMeansDenoisingColored( InputArray src, OutputArray dst,
-                                               int templateWindowSize, int searchWindowSize, 
+                                               int templateWindowSize, int searchWindowSize,
                                                int h, int hForColorComponents);
 
-CV_EXPORTS_W void fastNlMeansDenoisingMulti( InputArrayOfArrays srcImgs, 
+CV_EXPORTS_W void fastNlMeansDenoisingMulti( InputArrayOfArrays srcImgs,
                                              int imgToDenoiseIndex, int temporalWindowSize,
                                              OutputArray dst,
                                              int templateWindowSize, int searchWindowSize, int h);
 
-CV_EXPORTS_W void fastNlMeansDenoisingColoredMulti( InputArrayOfArrays srcImgs, 
+CV_EXPORTS_W void fastNlMeansDenoisingColoredMulti( InputArrayOfArrays srcImgs,
                                                     int imgToDenoiseIndex, int temporalWindowSize,
                                                     OutputArray dst,
-                                                    int templateWindowSize, int searchWindowSize, 
+                                                    int templateWindowSize, int searchWindowSize,
                                                     int h, int hForColorComponents);
 
 }
index 40a0924..f771b8f 100644 (file)
@@ -47,6 +47,7 @@
 #include "opencv2/imgproc/imgproc.hpp"
 
 #include "opencv2/photo/photo_c.h"
+#include "opencv2/photo/denoising.hpp"
 
 #ifdef __cplusplus