�洢ͼ��ƥ�����������Ϣ
| 4 | * |
| 5 | */ |
| 6 | public class ImgSeekBean { |
| 7 | /** �Ƿ�ƥ��ɹ�; */ |
| 8 | private boolean Seek; |
| 9 | /** |
| 10 | *ƥ��ɹ���ģ��ͼ��ԭͼ�еĵ����Ͻǡ����½����� ,��ʼΪ(-1,-1)(-1,-1) |
| 11 | */ |
| 12 | private int x1=-1,x2=-1,y1=-1,y2=-1; |
| 13 | |
| 14 | /** |
| 15 | * ģ��ͼ������������ |
| 16 | */ |
| 17 | private int tempKeyPointsNum=-1; |
| 18 | |
| 19 | /** |
| 20 | * ģ��ͼ��ԭͼ��ƥ������������� |
| 21 | */ |
| 22 | private int matchKeyPointsNum=-1; |
| 23 | |
| 24 | /** |
| 25 | * ƥ��ɹ���ģ��ͼ���ĵ��������� |
| 26 | */ |
| 27 | private int midX,midY; |
| 28 | public boolean isSeek() { |
| 29 | return Seek; |
| 30 | } |
| 31 | public void setSeek(boolean seek) { |
| 32 | Seek = seek; |
| 33 | } |
| 34 | public int getX1() { |
| 35 | return x1; |
| 36 | } |
| 37 | public void setX1(int x1) { |
| 38 | this.x1 = x1; |
| 39 | } |
| 40 | public int getX2() { |
| 41 | return x2; |
| 42 | } |
| 43 | public void setX2(int x2) { |
| 44 | this.x2 = x2; |
| 45 | } |
| 46 | public int getY1() { |
| 47 | return y1; |
| 48 | } |
| 49 | public void setY1(int y1) { |
| 50 | this.y1 = y1; |
| 51 | } |
| 52 | public int getY2() { |
| 53 | return y2; |
| 54 | } |
| 55 | public void setY2(int y2) { |
| 56 | this.y2 = y2; |
| 57 | } |
| 58 | public int getTempKeyPointsNum() { |
| 59 | return tempKeyPointsNum; |
| 60 | } |
| 61 | public void setTempKeyPointsNum(int tempKeyPointsNum) { |
| 62 | this.tempKeyPointsNum = tempKeyPointsNum; |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected