Package boofcv.core.image
Class InterleavedImageOps
java.lang.Object
boofcv.core.image.InterleavedImageOps
Functions related to interleaved images.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidmerge2(GrayF32 band0, GrayF32 band1, InterleavedF32 interleaved) Combines twoImageGrayinto a singleImageInterleaved.static voidsplit2(InterleavedF32 interleaved, GrayF32 band0, GrayF32 band1) Splits the 2-band interleaved into into twoImageGray.
-
Constructor Details
-
InterleavedImageOps
public InterleavedImageOps()
-
-
Method Details
-
split2
Splits the 2-band interleaved into into twoImageGray.- Parameters:
interleaved- (Input) Interleaved image with 2 bandsband0- (Output) band 0band1- (Output) band 1
-
merge2
Combines twoImageGrayinto a singleImageInterleaved.- Parameters:
band0- (Input) band 0band1- (Input) band 1interleaved- (Output) Interleaved image with 2 bands
-