OSDN Git Service

2d7e58a3c7e40cd180905eb6944d598e81ddb05f
[nyartoolkit-and/nyartoolkit-and.git] / src / jp / nyatla / nyartoolkit / core / transmat / NyARTransMatResult.java
1 /* \r
2  * PROJECT: NyARToolkit\r
3  * --------------------------------------------------------------------------------\r
4  * This work is based on the original ARToolKit developed by\r
5  *   Hirokazu Kato\r
6  *   Mark Billinghurst\r
7  *   HITLab, University of Washington, Seattle\r
8  * http://www.hitl.washington.edu/artoolkit/\r
9  *\r
10  * The NyARToolkit is Java version ARToolkit class library.\r
11  * Copyright (C)2008 R.Iizuka\r
12  *\r
13  * This program is free software; you can redistribute it and/or\r
14  * modify it under the terms of the GNU General Public License\r
15  * as published by the Free Software Foundation; either version 2\r
16  * of the License, or (at your option) any later version.\r
17  * \r
18  * This program is distributed in the hope that it will be useful,\r
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
21  * GNU General Public License for more details.\r
22  * \r
23  * You should have received a copy of the GNU General Public License\r
24  * along with this framework; if not, write to the Free Software\r
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
26  * \r
27  * For further information please contact.\r
28  *      http://nyatla.jp/nyatoolkit/\r
29  *      <airmail(at)ebony.plala.or.jp>\r
30  * \r
31  */\r
32 package jp.nyatla.nyartoolkit.core.transmat;\r
33 \r
34 import jp.nyatla.nyartoolkit.NyARException;\r
35 import jp.nyatla.nyartoolkit.core.NyARMat;\r
36 import jp.nyatla.nyartoolkit.detector.*;\r
37 \r
38 /**\r
39  * NyARTransMat戻り値専用のNyARMat\r
40  * \r
41  */\r
42 public class NyARTransMatResult extends NyARMat\r
43 {\r
44         private boolean has_value = false;\r
45 \r
46         public NyARTransMatResult()\r
47         {\r
48                 super(3, 4);\r
49         }\r
50 \r
51         /**\r
52          * この関数は使えません。\r
53          * \r
54          * @param i_row\r
55          * @param i_clm\r
56          * @throws NyARException\r
57          */\r
58         public NyARTransMatResult(int i_row, int i_clm) throws NyARException\r
59         {\r
60                 super();// ここで例外発生\r
61         }\r
62 \r
63         /**\r
64          * パラメータで変換行列を更新します。\r
65          * \r
66          * @param i_rot\r
67          * @param i_off\r
68          * @param i_trans\r
69          */\r
70         public void updateMatrixValue(NyARRotMatrix i_rot, double[] i_off, double[] i_trans)\r
71         {\r
72                 double[] pa;\r
73                 pa = this.m[0];\r
74                 pa[0] = i_rot.m00;\r
75                 pa[1] = i_rot.m01;\r
76                 pa[2] = i_rot.m02;\r
77                 pa[3] = i_rot.m00 * i_off[0] + i_rot.m01 * i_off[1] + i_rot.m02 * i_off[2] + i_trans[0];\r
78 \r
79                 pa = this.m[1];\r
80                 pa[0] = i_rot.m10;\r
81                 pa[1] = i_rot.m11;\r
82                 pa[2] = i_rot.m12;\r
83                 pa[3] = i_rot.m10 * i_off[0] + i_rot.m11 * i_off[1] + i_rot.m12 * i_off[2] + i_trans[1];\r
84 \r
85                 pa = this.m[2];\r
86                 pa[0] = i_rot.m20;\r
87                 pa[1] = i_rot.m21;\r
88                 pa[2] = i_rot.m22;\r
89                 pa[3] = i_rot.m20 * i_off[0] + i_rot.m21 * i_off[1] + i_rot.m22 * i_off[2] + i_trans[2];\r
90 \r
91                 this.has_value = true;\r
92                 return;\r
93         }\r
94 \r
95         public void copyFrom(NyARTransMatResult i_from) throws NyARException\r
96         {\r
97                 super.copyFrom(i_from);\r
98                 this.has_value = i_from.has_value;\r
99         }\r
100 \r
101         public boolean hasValue()\r
102         {\r
103                 return this.has_value;\r
104         }\r
105 }\r