Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TopHat"/> class.
 /// </summary>
 ///
 /// <param name="se">Structuring element to pass to <see cref="Opening"/> operator.</param>
 ///
 public TopHat(short[,] se) : this()
 {
     opening = new Opening(se);
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TopHat"/> class.
 /// </summary>
 /// 
 /// <param name="se">Structuring element to pass to <see cref="Opening"/> operator.</param>
 /// 
 public TopHat( short[,] se ) : this( )
 {
     opening = new Opening( se );
 }