Example #1
0
 private void Segment(FastBitmap resultImg, FastBitmap inputImg, byte threshold, PictureBox pictureBox, BinarySegmentator binarySegmentator)
 {
     resultImg        = binarySegmentator.Segmentation(inputImg, threshold, 255);
     pictureBox.Image = resultImg.Bitmap;
 }