OSDN Git Service

db4b838a7dece99014876eb3c2f26ad1b38d3430
[nyartoolkit-and/nyartoolkit-and.git] / trunk / src / jp / nyatla / nyartoolkit / core / rasterreader / NyARRgbPixelReader_RGB24.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.core.rasterreader;\r
32 \r
33 import jp.nyatla.nyartoolkit.NyARException;\r
34 import jp.nyatla.nyartoolkit.core.types.*;\r
35 /**\r
36  * byte[]配列に、パディング無しの8bit画素値が、RGBRGBの順で並んでいる\r
37  * バッファに使用できるピクセルリーダー\r
38  *\r
39  */\r
40 public class NyARRgbPixelReader_RGB24 implements INyARRgbPixelReader\r
41 {\r
42         protected byte[] _ref_buf;\r
43 \r
44         private NyARIntSize _size;\r
45 \r
46         public NyARRgbPixelReader_RGB24(byte[] i_buf, NyARIntSize i_size)\r
47         {\r
48                 this._ref_buf = i_buf;\r
49                 this._size = i_size;\r
50         }\r
51 \r
52         public void getPixel(int i_x, int i_y, int[] o_rgb)\r
53         {\r
54                 final byte[] ref_buf = this._ref_buf;\r
55                 final int bp = (i_x + i_y * this._size.w) * 3;\r
56                 o_rgb[0] = (ref_buf[bp + 0] & 0xff);// R\r
57                 o_rgb[1] = (ref_buf[bp + 1] & 0xff);// G\r
58                 o_rgb[2] = (ref_buf[bp + 2] & 0xff);// B\r
59                 return;\r
60         }\r
61 \r
62         public void getPixelSet(int[] i_x, int[] i_y, int i_num, int[] o_rgb)\r
63         {\r
64                 int bp;\r
65                 final int width = this._size.w;\r
66                 final byte[] ref_buf = this._ref_buf;\r
67                 for (int i = i_num - 1; i >= 0; i--) {\r
68                         bp = (i_x[i] + i_y[i] * width) * 3;\r
69                         o_rgb[i * 3 + 0] = (ref_buf[bp + 0] & 0xff);// R\r
70                         o_rgb[i * 3 + 1] = (ref_buf[bp + 1] & 0xff);// G\r
71                         o_rgb[i * 3 + 2] = (ref_buf[bp + 2] & 0xff);// B\r
72                 }\r
73                 return;\r
74         }\r
75         public void setPixel(int i_x, int i_y, int[] i_rgb) throws NyARException\r
76         {\r
77                 NyARException.notImplement();           \r
78         }\r
79         public void setPixels(int[] i_x, int[] i_y, int i_num, int[] i_intrgb) throws NyARException\r
80         {\r
81                 NyARException.notImplement();           \r
82         }\r
83         \r
84 }