チェンジセット 3879
- コミット日時:
- 2010/05/04 12:01:36 (2 年前)
- ファイル:
-
- as3/FLARToolKit/trunk/src/examples/manager/FLSingleARMarkerManager.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/examples/manager/FLSingleNyIdMarkerManager.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/raster/rgb/FLARRgbRaster_BitmapData.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/squaredetect/FLARSquareContourDetector.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/detector/FLARMultiMarkerDetector.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/detector/FLARSingleMarkerDetector.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/processor/FLSingleARMarkerProcesser.as (更新) (1 diff)
- as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/processor/FLSingleNyIdMarkerProcesser.as (更新) (1 diff)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/FLARToolKit/trunk/src/examples/manager/FLSingleARMarkerManager.as
r3684 r3879 115 115 var scr_size:NyARIntSize = i_param.getScreenSize(); 116 116 // 解析オブジェクトを作る 117 this._square_detect = new FLARSquareContourDetector( i_param.getDistortionFactor(),scr_size);117 this._square_detect = new FLARSquareContourDetector(scr_size); 118 118 this._transmat = new NyARTransMat(i_param); 119 119 this._tobin_filter=new FLARRasterFilter_Threshold(110); as3/FLARToolKit/trunk/src/examples/manager/FLSingleNyIdMarkerManager.as
r3443 r3879 102 102 var scr_size:NyARIntSize = i_param.getScreenSize(); 103 103 // 解析オブジェクトを作る 104 this._square_detect = new FLARSquareContourDetector( i_param.getDistortionFactor(),scr_size);104 this._square_detect = new FLARSquareContourDetector(scr_size); 105 105 this._transmat = new NyARTransMat(i_param); 106 106 this._callback=new DetectSquareCB(i_param,i_encoder); as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/raster/rgb/FLARRgbRaster_BitmapData.as
r3672 r3879 39 39 private var _bitmapData:BitmapData; 40 40 private var _rgb_reader:FLARRgbPixelReader_BitmapData; 41 41 42 /** 43 * 44 * @deprecated 次バージョンで次のように変更されます。 FLARRgbRaster_BitmapData(i_width:int,i_height:int) 45 */ 42 46 public function FLARRgbRaster_BitmapData(bitmapData:BitmapData) { 43 super( new NyARIntSize(bitmapData.width, bitmapData.height),NyARBufferType.OBJECT_AS3_BitmapData);47 super(bitmapData.width, bitmapData.height,NyARBufferType.OBJECT_AS3_BitmapData); 44 48 this._bitmapData = bitmapData; 45 49 this._rgb_reader = new FLARRgbPixelReader_BitmapData(this._bitmapData); as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/squaredetect/FLARSquareContourDetector.as
r3336 r3879 62 62 * @param i_param 63 63 */ 64 public function FLARSquareContourDetector(i_ dist_factor_ref:NyARCameraDistortionFactor,i_size:NyARIntSize)64 public function FLARSquareContourDetector(i_size:NyARIntSize) 65 65 { 66 66 this._width = i_size.w; as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/detector/FLARMultiMarkerDetector.as
r3872 r3879 120 120 this._transmat = new NyARTransMat(i_ref_param); 121 121 //NyARToolkitプロファイル 122 this._square_detect =new FLARSquareContourDetector(i_ref_param.get DistortionFactor(),i_ref_param.getScreenSize());122 this._square_detect =new FLARSquareContourDetector(i_ref_param.getScreenSize()); 123 123 this._tobin_filter=new FLARRasterFilter_Threshold(100); 124 124 as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/detector/FLARSingleMarkerDetector.as
r3872 r3879 82 82 // trace('w:'+markerWidthByDec+'/h:'+markerHeightByDec); 83 83 84 sqdetect_inst=new FLARSquareContourDetector(i_ref_param.get DistortionFactor(),i_ref_param.getScreenSize());84 sqdetect_inst=new FLARSquareContourDetector(i_ref_param.getScreenSize()); 85 85 transmat_inst=new NyARTransMat(i_ref_param); 86 86 initInstance(patt_inst,sqdetect_inst,transmat_inst,th,i_ref_param,i_ref_code,i_marker_width); as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/processor/FLSingleARMarkerProcesser.as
r3415 r3879 109 109 var scr_size:NyARIntSize = i_param.getScreenSize(); 110 110 // 解析オブジェクトを作る 111 this._square_detect = new FLARSquareContourDetector( i_param.getDistortionFactor(),scr_size);111 this._square_detect = new FLARSquareContourDetector(scr_size); 112 112 this._transmat = new NyARTransMat(i_param); 113 113 this._tobin_filter=new FLARRasterFilter_Threshold(110); as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/processor/FLSingleNyIdMarkerProcesser.as
r3415 r3879 93 93 var scr_size:NyARIntSize = i_param.getScreenSize(); 94 94 // 解析オブジェクトを作る 95 this._square_detect = new FLARSquareContourDetector( i_param.getDistortionFactor(),scr_size);95 this._square_detect = new FLARSquareContourDetector(scr_size); 96 96 this._transmat = new NyARTransMat(i_param); 97 97 this._callback=new DetectSquareCB(i_param,i_encoder);

