Esempio n. 1
0
 public ColorSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IClothDao clothDao, int maxResult)
     : base(picParam, limit, calcDist, clothDao, maxResult)
 {
 }
Esempio n. 2
0
 public ColorSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, limit, calcDist, wrappedSearcher, maxResult)
 {
 }
 public DaubechiesWaveletSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IClothDao clothDao, int maxResult)
     : base(picParam, limit, calcDist, clothDao, maxResult)
 {
 }
 public DaubechiesWaveletSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, limit, calcDist, wrappedSearcher, maxResult)
 {
 }
Esempio n. 5
0
 public PicSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IClothDao clothDao, int maxResult)
     : base(picParam, clothDao, maxResult)
 {
     this.limit    = limit;
     this.calcDist = calcDist;
 }
Esempio n. 6
0
 public PicSearcher(PicParam picParam, float limit, DelCalcDist calcDist, IBaseSearcher wrappedSearcher, int maxResult)
     : base(picParam, wrappedSearcher, maxResult)
 {
     this.limit    = limit;
     this.calcDist = calcDist;
 }