Features.ImageInfo.getHist C# (CSharp) Method

getHist() public method

public getHist ( ) : Histogram
return AForge.Math.Histogram
        public Histogram getHist()
        {
            return _hist != null ? _hist : createHist();
        }

Usage Example

Example #1
0
 public void TestDeepCopyCOns()
 {
     ImageInfo from = new ImageInfo(PATH_160_120_RGB);
     from.getHist();
     from.getImb();
     from.getImF();
     ImageInfo to = new ImageInfo(from);
     from.Dispose();
     from = null;
     Debug.WriteLine("B:{0},F:{1}, W:{2}, H:{3}, HISTMEAN:{4}, P:{5}",
         to.getImb().Length, to.getImF().Length, to.Width, to.Height, to.getHist().Mean, to.getPath());
 }
All Usage Examples Of Features.ImageInfo::getHist