Ejemplo n.º 1
0
 public override void SegmentDisparity(DisparityMap map)
 {
     _checkAndAddToSegment = CheckAndAddToSegment_Disparity;
     _map = map;
     _colorImage = null;
     _imageMatrix = null;
     SegmentInternal(map.RowCount, map.ColumnCount);
 }
Ejemplo n.º 2
0
 public override void SegmentGray(Matrix<double> imageMatrix)
 {
     _checkAndAddToSegment = CheckAndAddToSegment_Gray;
     _imageMatrix = imageMatrix;
     _colorImage = null;
     _map = null;
     SegmentInternal(imageMatrix.RowCount, imageMatrix.ColumnCount);
 }
Ejemplo n.º 3
0
 public override void SegmentColor(ColorImage image)
 {
     _checkAndAddToSegment = CheckAndAddToSegment_Color;
     _colorImage = image;
     _imageMatrix = null;
     _map = null;
     SegmentInternal(image.RowCount, image.ColumnCount);
 }