Class InterleavedImageOps

java.lang.Object
boofcv.core.image.InterleavedImageOps

public class InterleavedImageOps extends Object
Functions related to interleaved images.
  • Constructor Details

    • InterleavedImageOps

      public InterleavedImageOps()
  • Method Details

    • split2

      public static void split2(InterleavedF32 interleaved, GrayF32 band0, GrayF32 band1)
      Splits the 2-band interleaved into into two ImageGray.
      Parameters:
      interleaved - (Input) Interleaved image with 2 bands
      band0 - (Output) band 0
      band1 - (Output) band 1
    • merge2

      public static void merge2(GrayF32 band0, GrayF32 band1, InterleavedF32 interleaved)
      Combines two ImageGray into a single ImageInterleaved.
      Parameters:
      band0 - (Input) band 0
      band1 - (Input) band 1
      interleaved - (Output) Interleaved image with 2 bands