差分発生行の前後
無視リスト:
コミット日時:
2010/07/18 06:24:33 (2 年前)
コミッタ:
ericsoco
ログメッセージ:

minor changes with long descriptions:

FLARSingle/MultiMarkerDetector.setAreaRange() should refer directly to default values in FLARLabeling. changes to allow this:
- made FLARLabeling.AR_AREA_MAX/MIN constants public
- set FLARLabeling.AR_AREA_MAX/MIN as default values for parameters to FLARSingle/MultiMarkerDetector.setAreaRange()

also, added code to FLARMultiMarkerDetector.detectMarkerLite() that allows FLARToolkit's internal thresholding algorithm to be skipped, so developers can implement their own thresholding algorithms.

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/core/labeling/fllabeling/FLARLabeling.as

    r4089 r4106  
    4343        public class FLARLabeling 
    4444        { 
    45                 private static const AR_AREA_MAX:int = 100000;// #define AR_AREA_MAX 100000 
    46                 private static const AR_AREA_MIN:int = 70;// #define AR_AREA_MIN 70 
     45                public static const AR_AREA_MAX:int = 100000;// #define AR_AREA_MAX 100000 
     46                public static const AR_AREA_MIN:int = 70;// #define AR_AREA_MIN 70 
    4747                 
    4848                private static const ZERO_POINT:Point = new Point();