1. New function ActualScalarDepth was added
authorAlexander Kapustin <alexander.kapustin@itseez.com>
Thu, 20 Sep 2012 13:24:20 +0000 (17:24 +0400)
committerAlexander Kapustin <alexander.kapustin@itseez.com>
Thu, 20 Sep 2012 13:24:20 +0000 (17:24 +0400)
2. Two new NeonOptimized functions subtract_8u8u32f and subtract_8u8u8s were added

modules/core/src/arithm.cpp

index 33a72a4..9add4c3 100644 (file)
@@ -1216,7 +1216,7 @@ void cv::min(const Mat& src1, double src2, Mat& dst)
 namespace cv
 {
 
-int actualScalarDepth(const Mat& src)
+static int actualScalarDepth(const Mat& src)
 {
     double min = MIN(MIN(*((double*)src.data), *((double*)src.data+1)), MIN(*((double*)src.data+2), (*((double*)src.data+3))));
     double max = MAX(MAX(*((double*)src.data), *((double*)src.data+1)), MAX(*((double*)src.data+2), (*((double*)src.data+3))));