// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageProcessorCore.Samplers { /// /// Applies sampling methods to an image. /// All processors requiring resampling or resizing should inherit from this. /// public abstract class ImageSampler : ParallelImageProcessor, IImageSampler { /// public virtual bool Compand { get; set; } = false; } }