Accord.Imaging.UnmanagedImage.CollectActivePixels C# (CSharp) Method

CollectActivePixels() public method

Collect coordinates of none black pixels in the image.
public CollectActivePixels ( ) : List
return List
        public List<IntPoint> CollectActivePixels()
        {
            return CollectActivePixels(new Rectangle(0, 0, width, height));
        }

Same methods

UnmanagedImage::CollectActivePixels ( Rectangle rect ) : List