From 98031a4147930ec8df5729b9d686fbcaedc4bf5c Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Fri, 30 Nov 2012 12:31:33 +0400 Subject: [PATCH] removed const modificators --- modules/imgproc/src/demosaicing.cpp | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/modules/imgproc/src/demosaicing.cpp b/modules/imgproc/src/demosaicing.cpp index a7e7f00..0c7b7c9 100644 --- a/modules/imgproc/src/demosaicing.cpp +++ b/modules/imgproc/src/demosaicing.cpp @@ -310,12 +310,12 @@ public: } private: - const Mat srcmat; + Mat srcmat; Mat dstmat; - const int Start_with_green; - const bool Brow; - const Size size; - const int Bcoeff, Rcoeff; + int Start_with_green; + bool Brow; + Size size; + int Bcoeff, Rcoeff; }; template @@ -589,13 +589,10 @@ public: } private: - const Mat srcmat; + Mat srcmat; Mat dstmat; int Start_with_green, Blue; - const Size size; - - const Bayer2RGB_Invoker& operator= (const Bayer2RGB_Invoker&); - Bayer2RGB_Invoker(const Bayer2RGB_Invoker&); + Size size; }; template @@ -1271,13 +1268,10 @@ public: } private: - const Mat src; + Mat src; Mat dst; - const Size size; - const int Blue, Start_with_green; - - const Bayer2RGB_EdgeAware_T_Invoker& operator= (const Bayer2RGB_EdgeAware_T_Invoker&); - Bayer2RGB_EdgeAware_T_Invoker(const Bayer2RGB_EdgeAware_T_Invoker&); + Size size; + int Blue, Start_with_green; }; template -- 2.7.4