/** * コンストラクタです。カメラパラメータにサンプル値(../Data/camera_para.dat)をロードして、コンフィギュレーションを生成します。 * @param i_width * @param i_height * @ */ public NyARMarkerSystemConfig(NyARSingleCameraView i_view, int i_transmat_algo_type) { Debug.Assert(1 <= i_transmat_algo_type && i_transmat_algo_type <= 3); this._cview = i_view; this._transmat_algo_type = i_transmat_algo_type; return; }
protected NyARSingleCameraSystem(NyARSingleCameraView i_ref_view) { this._view = i_ref_view; this._view.setClipping( NyARSingleCameraView.FRUSTUM_DEFAULT_NEAR_CLIP, NyARSingleCameraView.FRUSTUM_DEFAULT_FAR_CLIP); }
public NyARNftSystemConfig(NyARSingleCameraView i_ref_view) { this._cview = i_ref_view; }