OSDN Git Service

[tag]NyARToolkit/2.5.1
[nyartoolkit-and/nyartoolkit-and.git] / tags / 2.5.1 / src / jp / nyatla / nyartoolkit / core / rasterfilter / NyARRasterFilter_Roberts.java
1 /* \r
2  * PROJECT: NyARToolkit(Extension)\r
3  * --------------------------------------------------------------------------------\r
4  * The NyARToolkit is Java edition ARToolKit class library.\r
5  * Copyright (C)2008-2009 Ryo Iizuka\r
6  *\r
7  * This program is free software: you can redistribute it and/or modify\r
8  * it under the terms of the GNU General Public License as published by\r
9  * the Free Software Foundation, either version 3 of the License, or\r
10  * (at your option) any later version.\r
11  * \r
12  * This program is distributed in the hope that it will be useful,\r
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
15  * GNU General Public License for more details.\r
16  *\r
17  * You should have received a copy of the GNU General Public License\r
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
19  * \r
20  * For further information please contact.\r
21  *      http://nyatla.jp/nyatoolkit/\r
22  *      <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
23  * \r
24  */\r
25 package jp.nyatla.nyartoolkit.core.rasterfilter;\r
26 \r
27 import jp.nyatla.nyartoolkit.NyARException;\r
28 import jp.nyatla.nyartoolkit.core.raster.*;\r
29 import jp.nyatla.nyartoolkit.core.types.NyARBufferType;\r
30 import jp.nyatla.nyartoolkit.core.types.NyARIntSize;\r
31 \r
32 /**\r
33  * Roberts法で勾配を計算します。\r
34  * 出力画像のピクセルは、X,Y軸方向に-1され、下端、右端の画素は無効な値が入ります。\r
35  * X=|-1, 0|  Y=|0,-1|\r
36  *   | 0, 1|    |1, 0|\r
37  * V=sqrt(X^2+Y+2)/2\r
38  */\r
39 public class NyARRasterFilter_Roberts implements INyARRasterFilter\r
40 {\r
41         private IdoFilterImpl _do_filter_impl; \r
42         public NyARRasterFilter_Roberts(int i_raster_type) throws NyARException\r
43         {\r
44                 switch (i_raster_type) {\r
45                 case NyARBufferType.INT1D_GRAY_8:\r
46                         this._do_filter_impl=new IdoFilterImpl_GRAY_8();\r
47                         break;\r
48                 default:\r
49                         throw new NyARException();\r
50                 }\r
51         }\r
52         public void doFilter(INyARRaster i_input, INyARRaster i_output) throws NyARException\r
53         {\r
54                 this._do_filter_impl.doFilter(i_input,i_output,i_input.getSize());\r
55         }\r
56         \r
57         interface IdoFilterImpl\r
58         {\r
59                 public void doFilter(INyARRaster i_input, INyARRaster i_output,NyARIntSize i_size) throws NyARException;\r
60         }\r
61         class IdoFilterImpl_GRAY_8 implements IdoFilterImpl\r
62         {\r
63                 public void doFilter(INyARRaster i_input, INyARRaster i_output,NyARIntSize i_size) throws NyARException\r
64                 {\r
65                         assert (i_input.isEqualBufferType(NyARBufferType.INT1D_GRAY_8));\r
66                         assert (i_output.isEqualBufferType(NyARBufferType.INT1D_GRAY_8));\r
67                         int[] in_ptr =(int[])i_input.getBuffer();\r
68                         int[] out_ptr=(int[])i_output.getBuffer();\r
69                         int width=i_size.w;\r
70                         int height=i_size.h;\r
71                         for(int y=0;y<height-1;y++){\r
72                                 int idx=y*width;\r
73                                 int p00=in_ptr[idx];\r
74                                 int p10=in_ptr[width+idx];\r
75                                 int p01,p11;\r
76                                 for(int x=0;x<width-1;x++){\r
77                                         p01=in_ptr[idx+1];\r
78                                         p11=in_ptr[idx+width+1];\r
79                                         int fx=p11-p00;\r
80                                         int fy=p10-p01;\r
81                                         out_ptr[idx]=(int)Math.sqrt(fx*fx+fy*fy)>>1;\r
82                                         p00=p01;\r
83                                         p10=p11;\r
84                                         idx++;\r
85                                 }\r
86                         }\r
87                         return;\r
88                 }\r
89         }\r
90 }\r
91 \r