📄 nyarcustomsingledetectmarker.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.detector;
import jp.nyatla.nyartoolkit.NyARException;
import jp.nyatla.nyartoolkit.core.*;
import jp.nyatla.nyartoolkit.core.match.*;
import jp.nyatla.nyartoolkit.core.param.NyARParam;
import jp.nyatla.nyartoolkit.core.pickup.*;
import jp.nyatla.nyartoolkit.core.raster.rgb.*;
import jp.nyatla.nyartoolkit.core.raster.*;
import jp.nyatla.nyartoolkit.core.transmat.*;
import jp.nyatla.nyartoolkit.core.types.NyARIntSize;
import jp.nyatla.nyartoolkit.core.rasterfilter.rgb2bin.*;
import jp.nyatla.nyartoolkit.core.types.*;
/**
* 画像からARCodeに最も一致するマーカーを1個検出し、その変換行列を計算するクラスです。
*
*/
public class NyARCustomSingleDetectMarker
{
private static final int AR_SQUARE_MAX = 100;
private boolean _is_continue = false;
private NyARMatchPatt_Color_WITHOUT_PCA _match_patt;
private INyARSquareDetector _square_detect;
private final NyARSquareStack _square_list = new NyARSquareStack(AR_SQUARE_MAX);
private NyARCode _code;
protected INyARTransMat _transmat;
private double _marker_width;
// 検出結果の保存用
private int _detected_direction;
private double _detected_confidence;
private NyARSquare _detected_square;
private INyARColorPatt _patt;
//画処理用
private NyARBinRaster _bin_raster;
protected INyARRasterFilter_RgbToBin _tobin_filter;
/**
* 検出するARCodeとカメラパラメータから、1個のARCodeを検出するNyARSingleDetectMarkerインスタンスを作ります。
*
* @param i_param
* カメラパラメータを指定します。
* @param i_code
* 検出するARCodeを指定します。
* @param i_marker_width
* ARコードの物理サイズを、ミリメートルで指定します。
* @param i_filter
* RGB→BIN変換フィルタを指定します。
* @throws NyARException
*/
public NyARCustomSingleDetectMarker(NyARParam i_param, NyARCode i_code, double i_marker_width,INyARRasterFilter_RgbToBin i_filter) throws NyARException
{
final NyARIntSize scr_size=i_param.getScreenSize();
// 解析オブジェクトを作る
this._square_detect = new NyARSquareDetector(i_param.getDistortionFactor(),scr_size);
this._transmat = new NyARTransMat(i_param);
// 比較コードを保存
this._code = i_code;
this._marker_width = i_marker_width;
// 評価パターンのホルダを作る
this._patt = new NyARColorPatt_O3(_code.getWidth(), _code.getHeight());
// 評価器を作る。
this._match_patt = new NyARMatchPatt_Color_WITHOUT_PCA();
//2値画像バッファを作る
this._bin_raster=new NyARBinRaster(scr_size.w,scr_size.h);
this._tobin_filter=i_filter;
}
/**
* i_imageにマーカー検出処理を実行し、結果を記録します。
*
* @param i_raster
* マーカーを検出するイメージを指定します。イメージサイズは、カメラパラメータ
* と一致していなければなりません。
* @return マーカーが検出できたかを真偽値で返します。
* @throws NyARException
*/
public boolean detectMarkerLite(INyARRgbRaster i_raster) throws NyARException
{
//サイズチェック
if(!this._bin_raster.getSize().isEqualSize(i_raster.getSize())){
throw new NyARException();
}
//ラスタを2値イメージに変換する.
this._tobin_filter.doFilter(i_raster,this._bin_raster);
this._detected_square = null;
NyARSquareStack l_square_list = this._square_list;
// スクエアコードを探す
this._square_detect.detectMarker(this._bin_raster, l_square_list);
int number_of_square = l_square_list.getLength();
// コードは見つかった?
if (number_of_square < 1) {
return false;
}
// 評価基準になるパターンをイメージから切り出す
if (!this._patt.pickFromRaster(i_raster, (NyARSquare)l_square_list.getItem(0))) {
// パターンの切り出しに失敗
return false;
}
// パターンを評価器にセット
if (!this._match_patt.setPatt(this._patt)) {
// 計算に失敗した。
throw new NyARException();
}
// コードと比較する
this._match_patt.evaluate(this._code);
int square_index = 0;
int direction = this._match_patt.getDirection();
double confidence = this._match_patt.getConfidence();
for (int i = 1; i < number_of_square; i++) {
// 次のパターンを取得
this._patt.pickFromRaster(i_raster, (NyARSquare)l_square_list.getItem(i));
// 評価器にセットする。
this._match_patt.setPatt(this._patt);
// コードと比較する
this._match_patt.evaluate(this._code);
double c2 = this._match_patt.getConfidence();
if (confidence > c2) {
continue;
}
// もっと一致するマーカーがあったぽい
square_index = i;
direction = this._match_patt.getDirection();
confidence = c2;
}
// マーカー情報を保存
this._detected_square = (NyARSquare)l_square_list.getItem(square_index);
this._detected_direction = direction;
this._detected_confidence = confidence;
return true;
}
/**
* 検出したマーカーの変換行列を計算して、o_resultへ値を返します。
* 直前に実行したdetectMarkerLiteが成功していないと使えません。
*
* @param o_result
* 変換行列を受け取るオブジェクトを指定します。
* @throws NyARException
*/
public void getTransmationMatrix(NyARTransMatResult o_result) throws NyARException
{
// 一番一致したマーカーの位置とかその辺を計算
if (this._is_continue) {
this._transmat.transMatContinue(this._detected_square,this._detected_direction,this._marker_width, o_result);
} else {
this._transmat.transMat(this._detected_square,this._detected_direction,this._marker_width, o_result);
}
return;
}
/**
* 画面上のマーカ頂点情報を配列へ取得します。
* @param o_point
* 4要素以上の配列を指定して下さい。先頭の4要素に値がコピーされます。
*/
public void getSquarePosition(NyARIntPoint[] o_point)
{
NyARIntPoint.copyArray(this._detected_square.imvertex,o_point);
return;
}
/**
* 画面上のマーカ頂点情報を配列へのリファレンスを返します。
* 返されたオブジェクトはクラスに所有し続けられています。クラスのメンバ関数を実行すると内容が書き変わります。
* 外部でデータをストックする場合は、getSquarePositionで複製して下さい。
* @return
*/
public NyARIntPoint[] refSquarePosition()
{
return this._detected_square.imvertex;
}
/**
* 検出したマーカーの一致度を返します。
*
* @return マーカーの一致度を返します。0~1までの値をとります。 一致度が低い場合には、誤認識の可能性が高くなります。
* @throws NyARException
*/
public double getConfidence()
{
return this._detected_confidence;
}
/**
* 検出したマーカーの方位を返します。
*
* @return 0,1,2,3の何れかを返します。
*/
public int getDirection()
{
return this._detected_direction;
}
/**
* getTransmationMatrixの計算モードを設定します。 初期値はTRUEです。
*
* @param i_is_continue
* TRUEなら、transMatCont互換の計算をします。 FALSEなら、transMat互換の計算をします。
*/
public void setContinueMode(boolean i_is_continue)
{
this._is_continue = i_is_continue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -