Package boofcv.core.image
Class InterleavedImageOps
java.lang.Object
boofcv.core.image.InterleavedImageOps
Functions related to interleaved images.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
merge2
(GrayF32 band0, GrayF32 band1, InterleavedF32 interleaved) Combines twoImageGray
into a singleImageInterleaved
.static void
split2
(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 twoImageGray
into a singleImageInterleaved
.- Parameters:
band0
- (Input) band 0band1
- (Input) band 1interleaved
- (Output) Interleaved image with 2 bands
-