OSDN Git Service

[Backup]NyARToolkit for Java
[nyartoolkit-and/nyartoolkit-and.git] / src / jp / nyatla / nyartoolkit / core / transmat / optimize / artoolkit / NyARRotMatrixOptimize_Base.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 edition ARToolKit class library.\r
11  * Copyright (C)2008-2009 Ryo Iizuka\r
12  *\r
13  * This program is free software: you can redistribute it and/or modify\r
14  * it under the terms of the GNU General Public License as published by\r
15  * the Free Software Foundation, either version 3 of the License, or\r
16  * (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 program.  If not, see <http://www.gnu.org/licenses/>.\r
25  * \r
26  * For further information please contact.\r
27  *      http://nyatla.jp/nyatoolkit/\r
28  *      <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
29  * \r
30  */\r
31 package jp.nyatla.nyartoolkit.core.transmat.optimize.artoolkit;\r
32 \r
33 import jp.nyatla.nyartoolkit.NyARException;\r
34 import jp.nyatla.nyartoolkit.core.param.*;\r
35 import jp.nyatla.nyartoolkit.core.transmat.rotmatrix.*;\r
36 import jp.nyatla.nyartoolkit.core.types.matrix.*;\r
37 import jp.nyatla.nyartoolkit.core.types.*;\r
38 \r
39 /**\r
40  * 処理構造がわかる程度に展開したNyARRotTransOptimize\r
41  * \r
42  */\r
43 public class NyARRotMatrixOptimize_Base implements INyARRotMatrixOptimize\r
44 {\r
45         private final NyARPerspectiveProjectionMatrix _projection_mat_ref;\r
46 \r
47         public NyARRotMatrixOptimize_Base(NyARPerspectiveProjectionMatrix i_projection_mat_ref)\r
48         {\r
49                 this._projection_mat_ref = i_projection_mat_ref;\r
50                 return;\r
51         }\r
52         private double[] __createRotationMap_b_map=new double[6];\r
53         private double[] __createRotationMap_c_map=new double[6];\r
54         private double[] __createRotationMap_f=new double[3];\r
55         private void createRotationMap(NyARDoublePoint3d i_angle,double i_factor,NyARDoubleMatrix33[] i_rot_matrix)\r
56         {\r
57                 double sina,cosa,sinb,cosb,sinc,cosc;\r
58                 double CACA,SASA,SACA,SASB,CASB,SACACB,CACACB,SASACB;\r
59 \r
60                 \r
61                 final double[] f=this.__createRotationMap_f;\r
62                 final double[] b_map=this.__createRotationMap_b_map;\r
63                 final double[] c_map=this.__createRotationMap_c_map;\r
64                 f[0]=-i_factor;\r
65                 f[1]=0;\r
66                 f[2]=i_factor;\r
67                 double ang1,ang2;\r
68                 //BとCのsinマップを先に作成\r
69                 for(int i=0;i<3;i++)\r
70                 {\r
71                         ang1=i_angle.y + f[i];\r
72                         b_map[i]  =Math.sin(ang1);\r
73                         b_map[i+3]=Math.cos(ang1);\r
74                         ang2=i_angle.z + f[i];\r
75                         c_map[i]  =Math.sin(ang2);\r
76                         c_map[i+3]=Math.cos(ang2);\r
77                 }\r
78                 int idx=0;\r
79                 int t1,t2,t3;\r
80                 for (t1 = 0; t1 < 3; t1++){\r
81                         ang1=i_angle.x + f[t1];\r
82                         sina = Math.sin(ang1);\r
83                         cosa = Math.cos(ang1);                  \r
84                         CACA = cosa * cosa;\r
85                         SASA = sina * sina;\r
86                         SACA = sina * cosa;\r
87 \r
88                         for (t2=0;t2<3;t2++){\r
89                                 sinb = b_map[t2];\r
90                                 cosb = b_map[t2+3];\r
91                                 SASB = sina * sinb;\r
92                                 CASB = cosa * sinb;\r
93                                 SACACB = SACA * cosb;\r
94                 CACACB = CACA * cosb;\r
95                 SASACB = SASA * cosb;           \r
96                                 for (t3=0;t3<3;t3++) {\r
97                                         sinc = c_map[t3];\r
98                                         cosc = c_map[t3+3];\r
99                                         final NyARDoubleMatrix33 mat_ptr=i_rot_matrix[idx];\r
100                                         mat_ptr.m00 = CACACB * cosc + SASA * cosc + SACACB * sinc - SACA * sinc;\r
101                                         mat_ptr.m01 = -CACACB * sinc - SASA * sinc + SACACB * cosc - SACA * cosc;\r
102                                         mat_ptr.m02 = CASB;\r
103                                         mat_ptr.m10 = SACACB * cosc - SACA * cosc + SASACB * sinc + CACA * sinc;\r
104                                         mat_ptr.m11 = -SACACB * sinc + SACA * sinc + SASACB * cosc + CACA * cosc;\r
105                                         mat_ptr.m12 = SASB;\r
106                                         mat_ptr.m20 = -CASB * cosc - SASB * sinc;\r
107                                         mat_ptr.m21 = CASB * sinc - SASB * cosc;\r
108                                         mat_ptr.m22 = cosb;\r
109                                         idx++;\r
110                                 }\r
111                         }\r
112                 }\r
113                 return;\r
114         }\r
115         private final void getNewMatrix(NyARDoubleMatrix33 i_rot, NyARDoublePoint3d i_trans, NyARDoubleMatrix34 o_combo)\r
116         {\r
117                 double cp0,cp1,cp2,cp3;\r
118                 NyARPerspectiveProjectionMatrix cp=this._projection_mat_ref;\r
119 \r
120                 cp3=cp.m03;\r
121                 cp0=cp.m00;cp1=cp.m01;cp2=cp.m02;\r
122                 o_combo.m00=cp0 * i_rot.m00 + cp1 * i_rot.m10 + cp2 * i_rot.m20;\r
123                 o_combo.m01=cp0 * i_rot.m01 + cp1 * i_rot.m11 + cp2 * i_rot.m21;\r
124                 o_combo.m02=cp0 * i_rot.m02 + cp1 * i_rot.m12 + cp2 * i_rot.m22;\r
125                 o_combo.m03=cp0 * i_trans.x + cp1 * i_trans.y + cp2 * i_trans.z +cp3;\r
126 \r
127                 cp0=cp.m10;cp1=cp.m11;cp2=cp.m12;\r
128                 o_combo.m10=cp0 * i_rot.m00 + cp1 * i_rot.m10 + cp2 * i_rot.m20;\r
129                 o_combo.m11=cp0 * i_rot.m01 + cp1 * i_rot.m11 + cp2 * i_rot.m21;\r
130                 o_combo.m12=cp0 * i_rot.m02 + cp1 * i_rot.m12 + cp2 * i_rot.m22;\r
131                 o_combo.m13=cp0 * i_trans.x + cp1 * i_trans.y + cp2 * i_trans.z +cp3;\r
132 \r
133                 cp0=cp.m20;cp1=cp.m21;cp2=cp.m22;\r
134                 o_combo.m20=cp0 * i_rot.m00 + cp1 * i_rot.m10 + cp2 * i_rot.m20;\r
135                 o_combo.m21=cp0 * i_rot.m01 + cp1 * i_rot.m11 + cp2 * i_rot.m21;\r
136                 o_combo.m22=cp0 * i_rot.m02 + cp1 * i_rot.m12 + cp2 * i_rot.m22;\r
137                 o_combo.m23=cp0 * i_trans.x + cp1 * i_trans.y + cp2 * i_trans.z +cp3;\r
138                 return;\r
139         }\r
140         private final NyARDoublePoint3d __modifyMatrix_angle = new NyARDoublePoint3d();\r
141         private final NyARDoubleMatrix34 __modifyMatrix_combo=new NyARDoubleMatrix34();\r
142         private final NyARDoubleMatrix33[] __modifyMatrix_next_rot_matrix=NyARDoubleMatrix33.createArray(27); \r
143         public double modifyMatrix(NyARRotMatrix_ARToolKit io_rot, NyARDoublePoint3d i_trans, NyARDoublePoint3d[] i_vertex3d, NyARDoublePoint2d[] i_vertex2d) throws NyARException\r
144         {\r
145                 final NyARDoublePoint3d angle = this.__modifyMatrix_angle;\r
146                 final NyARDoubleMatrix34 combo=this.__modifyMatrix_combo;\r
147                 final NyARDoubleMatrix33[] next_rot_matrix=this.__modifyMatrix_next_rot_matrix;\r
148                 double factor;\r
149                 double hx, hy, h, x, y;\r
150                 double err, minerr = 0;\r
151                 int i,i2;\r
152                 int best_idx=0;\r
153                 angle.setValue(io_rot.refAngle());// arGetAngle( rot, &a, &b, &c );\r
154                 factor = 10.0 * Math.PI / 180.0;\r
155                 for (int j = 0; j < 10; j++){\r
156                         minerr = 1000000000.0;\r
157                         //評価用の角度マップ作成\r
158                         createRotationMap(angle,factor,next_rot_matrix);\r
159                         //評価して一番宜しいIDを保存\r
160                         best_idx=(1+1*3+1*9);\r
161                         for(i2=0;i2<27;i2++){\r
162                                 this.getNewMatrix(next_rot_matrix[i2],i_trans,combo);\r
163                                 err = 0.0;\r
164                                 for (i = 0; i < 4; i++) {\r
165                                         hx =  combo.m00 * i_vertex3d[i].x + combo.m01 * i_vertex3d[i].y + combo.m02 * i_vertex3d[i].z + combo.m03;\r
166                                         hy = combo.m10 * i_vertex3d[i].x + combo.m11 *i_vertex3d[i].y + combo.m12 * i_vertex3d[i].z + combo.m13;\r
167                                         h = combo.m20 * i_vertex3d[i].x + combo.m21 * i_vertex3d[i].y + combo.m22 * i_vertex3d[i].z + combo.m23;\r
168                                         x = i_vertex2d[i].x-(hx / h);\r
169                                         y = i_vertex2d[i].y-(hy / h);\r
170                                         err += x*x+y*y;\r
171                                 }\r
172                                 if (err < minerr){\r
173                                         minerr = err;\r
174                                         best_idx=i2;\r
175                                 }\r
176                                 \r
177                         }\r
178                         if (best_idx==(1+1*3+1*9)){\r
179                                 factor *= 0.5;                  \r
180                         }else{\r
181                                 angle.z+=factor*(best_idx%3-1);\r
182                                 angle.y+=factor*((best_idx/3)%3-1);\r
183                                 angle.x+=factor*((best_idx/9)%3-1);                             \r
184                         }\r
185                 }\r
186                 io_rot.setAngle(angle.x,angle.y,angle.z);\r
187                 /* printf("factor = %10.5f\n", factor*180.0/MD_PI); */\r
188                 return minerr / 4;\r
189         }\r
190 \r
191 \r
192 \r
193 \r
194 }\r