📄 nyarparam.java
字号:
/*
* PROJECT: NyARToolkit
* --------------------------------------------------------------------------------
* This work is based on the original ARToolKit developed by
* Hirokazu Kato
* Mark Billinghurst
* HITLab, University of Washington, Seattle
* http://www.hitl.washington.edu/artoolkit/
*
* The NyARToolkit is Java version ARToolkit class library.
* Copyright (C)2008 R.Iizuka
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this framework; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* For further information please contact.
* http://nyatla.jp/nyatoolkit/
* <airmail(at)ebony.plala.or.jp>
*
*/
package jp.nyatla.nyartoolkit.core.param;
import java.io.*;
import java.nio.*;
import jp.nyatla.nyartoolkit.NyARException;
import jp.nyatla.nyartoolkit.core.types.*;
/**
* typedef struct { int xsize, ysize; double mat[3][4]; double dist_factor[4]; } ARParam;
* NyARの動作パラメータを格納するクラス
*
*/
public class NyARParam
{
protected NyARIntSize _screen_size=new NyARIntSize();
private static final int SIZE_OF_PARAM_SET = 4 + 4 + (3 * 4 * 8) + (4 * 8);
private NyARCameraDistortionFactor _dist=new NyARCameraDistortionFactor();
private NyARPerspectiveProjectionMatrix _projection_matrix=new NyARPerspectiveProjectionMatrix();
public NyARIntSize getScreenSize()
{
return this._screen_size;
}
public NyARPerspectiveProjectionMatrix getPerspectiveProjectionMatrix()
{
return this._projection_matrix;
}
public NyARCameraDistortionFactor getDistortionFactor()
{
return this._dist;
}
/**
*
* @param i_factor
* NyARCameraDistortionFactorにセットする配列を指定する。要素数は4であること。
* @param i_projection
* NyARPerspectiveProjectionMatrixセットする配列を指定する。要素数は12であること。
*/
public void setValue(double[] i_factor,double[] i_projection)
{
this._dist.setValue(i_factor);
this._projection_matrix.setValue(i_projection);
return;
}
/**
* ARToolKit標準ファイルから1個目の設定をロードする。
*
* @param i_filename
* @throws NyARException
*/
public void loadARParamFromFile(String i_filename) throws NyARException
{
try {
loadARParam(new FileInputStream(i_filename));
} catch (Exception e) {
throw new NyARException(e);
}
}
/**
* int arParamChangeSize( ARParam *source, int xsize, int ysize, ARParam *newparam );
* 関数の代替関数 サイズプロパティをi_xsize,i_ysizeに変更します。
* @param i_xsize
* @param i_ysize
* @param newparam
* @return
*
*/
public void changeScreenSize(int i_xsize, int i_ysize)
{
final double scale = (double) i_xsize / (double) (this._screen_size.w);// scale = (double)xsize / (double)(source->xsize);
//スケールを変更
this._dist.changeScale(scale);
this._projection_matrix.changeScale(scale);
this._screen_size.w = i_xsize;// newparam->xsize = xsize;
this._screen_size.h = i_ysize;// newparam->ysize = ysize;
return;
}
/**
* int arParamLoad( const char *filename, int num, ARParam *param, ...);
* i_streamの入力ストリームからi_num個の設定を読み込み、パラメタを配列にして返します。
*
* @param i_stream
* @throws Exception
*/
public void loadARParam(InputStream i_stream)throws NyARException
{
try {
byte[] buf = new byte[SIZE_OF_PARAM_SET];
i_stream.read(buf);
double[] tmp=new double[12];
// バッファを加工
ByteBuffer bb = ByteBuffer.wrap(buf);
bb.order(ByteOrder.BIG_ENDIAN);
this._screen_size.w = bb.getInt();
this._screen_size.h = bb.getInt();
//double値を12個読み込む
for(int i=0;i<12;i++){
tmp[i]=bb.getDouble();
}
//Projectionオブジェクトにセット
this._projection_matrix.setValue(tmp);
//double値を4個読み込む
for (int i = 0; i < 4; i++) {
tmp[i]=bb.getDouble();
}
//Factorオブジェクトにセット
this._dist.setValue(tmp);
} catch (Exception e) {
throw new NyARException(e);
}
return;
}
public void saveARParam(OutputStream i_stream)throws Exception
{
NyARException.trap("未チェックの関数");
byte[] buf = new byte[SIZE_OF_PARAM_SET];
// バッファをラップ
ByteBuffer bb = ByteBuffer.wrap(buf);
bb.order(ByteOrder.BIG_ENDIAN);
// 書き込み
bb.putInt(this._screen_size.w);
bb.putInt(this._screen_size.h);
double[] tmp=new double[12];
//Projectionを読み出し
this._projection_matrix.getValue(tmp);
//double値を12個書き込む
for(int i=0;i<12;i++){
tmp[i]=bb.getDouble();
}
//Factorを読み出し
this._dist.getValue(tmp);
//double値を4個書き込む
for (int i = 0; i < 4; i++) {
tmp[i]=bb.getDouble();
}
i_stream.write(buf);
return;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -