コード例 #1
0
 /// <inheritdoc />
 public LineDetection(LineDetectionType lineType)
     : base()
 {
     _kernelType = (int)lineType;
 }
コード例 #2
0
 /// <inheritdoc />
 public LineDetection(LineDetectionType lineType, int horizontalCellCount, int verticalCellCount)
     : base(horizontalCellCount, verticalCellCount)
 {
     _kernelType = (int)lineType;
 }