Example #1
0
 public ColorSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, limit, calcDist, wrappedSearcher, maxResult)
 {
 }
Example #2
0
 public GaborSearcher(PicParam picParam, float limit, IBaseSearcher wrappedSearcher, int maxResult)
     : this(picParam, limit, ClothUtil.CalcGaborDistance, wrappedSearcher, maxResult)
 {
 }
Example #3
0
 public CooccurrenceSearcher(PicParam picParam, float limit, IBaseSearcher wrappedSearcher, int maxResult)
     : this(picParam, limit, ClothUtil.CalcManhattanDistance, wrappedSearcher, maxResult)
 {
 }
 public DaubechiesWaveletSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, limit, calcDist, wrappedSearcher, maxResult)
 {
 }
 public DaubechiesWaveletSearcher(PicParam picParam, float limit, IBaseSearcher wrappedSearcher, int maxResult)
     : this(picParam, limit, ClothUtil.CalcManhattanDistance, wrappedSearcher, maxResult)
 {
 }
Example #6
0
 public BaseSearcher(BaseParam param, IBaseSearcher wrappedSearcher, int maxResult)
 {
     this.param           = param;
     this.wrappedSearcher = wrappedSearcher;
     this.MaxResult       = maxResult;
 }
Example #7
0
 public BaseSearcher(BaseParam param, IBaseSearcher wrappedSearcher)
     : this(param, wrappedSearcher, DEFAULT_MAX_RESULT)
 {
 }
Example #8
0
 public PicSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, wrappedSearcher, maxResult)
 {
     this.limit    = limit;
     this.calcDist = calcDist;
 }