Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
liuruoze committed Mar 24, 2015
1 parent 758b8c3 commit 98d9443
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions run_accuracy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -745,3 +745,15 @@
��ͼƬ��:120��, δʶ��ͼƬ:7��, ��λ��:94.1667%
ƽ���ַ����:2.0177��, ��ȫƥ����:26��, ��ȫƥ����:23.0089%
��ʱ��:84��, ƽ��ִ��ʱ��:0.7��
2015-03-24 13:50:35
��ͼƬ��:120��, δʶ��ͼƬ:7��, ��λ��:94.1667%
ƽ���ַ����:2.0177��, ��ȫƥ����:26��, ��ȫƥ����:23.0089%
��ʱ��:86��, ƽ��ִ��ʱ��:0.716667��
2015-03-24 13:55:14
��ͼƬ��:120��, δʶ��ͼƬ:7��, ��λ��:94.1667%
ƽ���ַ����:2.0177��, ��ȫƥ����:26��, ��ȫƥ����:23.0089%
��ʱ��:80��, ƽ��ִ��ʱ��:0.666667��
2015-03-24 13:59:48
��ͼƬ��:120��, δʶ��ͼƬ:7��, ��λ��:94.1667%
ƽ���ַ����:2.0177��, ��ȫƥ����:26��, ��ȫƥ����:23.0089%
��ʱ��:81��, ƽ��ִ��ʱ��:0.675��
4 changes: 2 additions & 2 deletions src/core/plate_locate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ void CPlateLocate::affine(const Mat& in, Mat& out, const double slope)

if (slope > 0)
{
//右偏型,新起点坐标系在xiff/2位置
//左倾型,新起点坐标系在xiff/2位置
plTri[0] = Point2f(0, 0);
plTri[1] = Point2f(width - xiff - 1, 0);
plTri[2] = Point2f(0 + xiff, height - 1);
Expand All @@ -616,7 +616,7 @@ void CPlateLocate::affine(const Mat& in, Mat& out, const double slope)
}
else
{
//左偏型,新起点坐标系在 -xiff/2位置
//右倾型,新起点坐标系在 -xiff/2位置
plTri[0] = Point2f(0 + xiff, 0);
plTri[1] = Point2f(width - 1, 0);
plTri[2] = Point2f(0, height - 1);
Expand Down

0 comments on commit 98d9443

Please sign in to comment.