/// <summary> /// Initializes a new instance of the <see cref="Opening"/> class. /// </summary> /// /// <param name="se">Structuring element.</param> /// /// <remarks><para>See documentation to <see cref="Erosion"/> and <see cref="Dilatation"/> /// classes for information about structuring element constraints.</para></remarks> /// public Opening(short[,] se) { errosion = new Erosion(se); dilatation = new Dilatation(se); }
/// <summary> /// Initializes a new instance of the <see cref="Opening"/> class. /// </summary> /// /// <param name="se">Structuring element.</param> /// /// <remarks><para>See documentation to <see cref="Erosion"/> and <see cref="Dilatation"/> /// classes for information about structuring element constraints.</para></remarks> /// public Opening( short[,] se ) { errosion = new Erosion( se ); dilatation = new Dilatation( se ); }