Beispiel #1
0
 public Page(Guid id, Bitmap image, PageMetric metric)
 {
     this.Id     = id;
     this.Image  = image;
     this.metric = metric;
 }
Beispiel #2
0
 public double CompareTo(PageMetric other)
 {
     return(this.metric.CompareTo(other));
 }
Beispiel #3
0
 public double CompareTo(PageMetric other)
 {
     return(CvInvoke.CompareHist(this.histogram, other.histogram, HistogramCompMethod.Chisqr));
 }