GetColorHashSet() public method

public GetColorHashSet ( Bitmap srcimg ) : HashSet
srcimg System.Drawing.Bitmap
return HashSet
 public void GenerateColorFromNegativeExamples(Bitmap srcimg)
 {
     ColorHistogram color_histogram = new ColorHistogram();
     HashSet<int> color = color_histogram.GetColorHashSet(srcimg);
     foreach (int c in color)
         negtive_color.Add(c);
 }