Class ImageBorderWrapped

java.lang.Object
boofcv.core.image.ImageBorderWrapped

public abstract class ImageBorderWrapped extends Object
Wraps a larger image and treats the inner portion as a regular image and uses the border pixels as a look up table for external ones. Primarily used as a debugging class and not very memory efficient.
  • Constructor Details

    • ImageBorderWrapped

      public ImageBorderWrapped()
  • Method Details

    • wrap

      public static <T extends ImageGray<T>> ImageBorder<T> wrap(T border, T image)
      Creates an ImageBorder for the two specified images. The offsets are created by dividing the difference inside by 2. Border must be bigger the image.