001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009package imagingbook.common.morphology; 010 011import ij.process.ByteProcessor; 012 013/** 014 * Common interface for all binary morphological operators. 015 * @author WB 016 */ 017public interface BinaryMorphologyOperator { 018 019 /** 020 * Applies this morphological operator to the specified image (destructively, that is, the image is modified). 021 * 022 * @param bp the image the operator is applied to 023 */ 024 public void applyTo(ByteProcessor bp); 025 026}