OSDN Git Service

ライセンス文の更新
[nyartoolkit-and/nyartoolkit-and.git] / trunk / src / jp / nyatla / nyartoolkit / core2 / rasterfilter / gs2bin / NyARRasterFilter_AreaAverage.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\r
14  * modify it under the terms of the GNU Lesser General Public License\r
15  * as published by the Free Software Foundation; either version 3\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 Lesser General Public License for more details\r
22  * \r
23  * You should have received a copy of the GNU Lesser General Public\r
24  * License 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.core2.rasterfilter.gs2bin;\r
32 \r
33 import jp.nyatla.nyartoolkit.NyARException;\r
34 import jp.nyatla.nyartoolkit.core.raster.*;\r
35 import jp.nyatla.nyartoolkit.core.rasterfilter.INyARRasterFilter_GsToBin;\r
36 import jp.nyatla.nyartoolkit.core.types.*;\r
37 \r
38 /**\r
39  * 平均移動法を使った2値化フィルタ\r
40  * \r
41  */\r
42 public class NyARRasterFilter_AreaAverage implements INyARRasterFilter_GsToBin\r
43 {\r
44         private int _area = 8;\r
45 \r
46         public void doFilter(NyARGrayscaleRaster i_input, NyARBinRaster i_output) throws NyARException\r
47         {\r
48                 final NyARIntSize size = i_output.getSize();\r
49                 final int[] out_buf = (int[]) i_output.getBufferReader().getBuffer();\r
50                 final int[] in_buf = (int[]) i_input.getBufferReader().getBuffer();\r
51                 assert (i_input.getSize().isEqualSize(i_output.getSize()) == true);\r
52                 assert (size.h % 8 == 0 && size.w % 8 == 0);//暫定実装なので。\r
53 \r
54                 final int area = this._area;\r
55                 int y1 = area;\r
56                 int x1 = area;\r
57                 int y2 = size.h - area;\r
58                 int x2 = size.w - area;\r
59 \r
60                 for (int y = y1; y < y2; y++) {\r
61                         int sum, nn;\r
62                         sum = nn = 0;\r
63                         for (int yy = y - area; yy < y + area + 1; yy++) {\r
64                                 for (int xx = x1 - area; xx < x1 + area; xx++) {\r
65                                         sum += in_buf[yy*size.w+xx];\r
66                                         nn++;\r
67                                 }\r
68                         }\r
69                         boolean first = true;\r
70                         for (int x = area; x < x2; x++) {\r
71                                 if (!first) {\r
72                                         for (int yy = y - area; yy < y + area; yy++) {\r
73                                                 sum += in_buf[yy*size.w+x + area];\r
74                                                 sum -= in_buf[yy*size.w+x - area];\r
75                                         }\r
76                                 }\r
77                                 first = false;\r
78                                 int th = (sum / nn);\r
79 \r
80                                 int g = in_buf[y*size.w+x];\r
81                                 out_buf[y*size.w+x] = th < g ? 1 : 0;\r
82                         }\r
83                 }\r
84                 return;\r
85         }\r
86 \r
87 }\r