@@ -1,3 +1,6 @@
[submodule "ThirdPartyLibs"]
path = ThirdPartyLibs
url = http://git.ius.plus/AI2/ThirdPartyLibs.git
+[submodule "AI.US"]
+ path = AI.US
+ url = http://git.ius.plus/AI2/AI.US.git
@@ -0,0 +1 @@
+Subproject commit b214d80a997b26c9cb6a8bb1ea059df0de8571f0
@@ -54,7 +54,7 @@ Mat DownImg(const Mat& inputImg, const vector<Point>& baseline)
Mat output = inputImg.clone();
Point pt1 = baseline[0];
Point pt2 = baseline[1];
- rectangle(output, Point(0, pt1.y), Point(output.cols - 1, 0), Scalar(0, 0, 0), -1);
+ rectangle(output, Point(0, pt1.y - 2), Point(output.cols - 1, 0), Scalar(0, 0, 0), -1);
return output;
}