package pl.wroc.pwr.image; import pl.wroc.pwr.imagechannel.IImageChannel; public interface IHSVImage extends IImage { public IImageChannel getHueChannel( ); public IImageChannel getSaturationChannel( ); public IImageChannel getBrightnessChannel( ); public void setHueChannel( IImageChannel channel ); public void setSaturationChannel( IImageChannel channel ); public void setBrightnessChannel( IImageChannel channel ); }