class: InterleavedU8
[1109:7] extends: object
InterleavedU8 wraps boofcv.struct.image.InterleavedU8.
Members
- obj
Methods
-
InterleavedU8 (
int Width = 0, int Height = 0, int NumBands = 1, object Obj = null)Creates an unsigned 8-bit interleaved image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
NumBandsis the number of bands per pixel. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
getNumBands ()
Gets the number of bands per pixel.
- @r
Thenumber of bands.
- @r
-
getImageType ()
Gets the BoofCV image type.
- @r
AnAussomJavaObject wrapping ImageType.
- @r
-
get (
int X, int Y, int Band)Gets one band from one pixel.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Bandis the band index. - @r
Theband value.
- @p
-
set (
int X, int Y, int Band, int Value)Sets one band on one pixel.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Bandis the band index. - @p
Valueis the band value.
- @p
-
reshape (
int Width, int Height, int NumBands)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels. - @p
NumBandsis the new number of bands.
- @p
-
clone ()
Clones this image.
- @r
Anew InterleavedU8 wrapper around the cloned image.
- @r
class: ImageTypes
[1326:14] static extends: object
ImageTypes exposes static factory methods for boofcv.struct.image.ImageType.
Methods
-
single (
string ImageClassName)Creates a single-band ImageType.
- @p
ImageClassNameis a full gray image class name or supported short image name. - @r
AnImageType wrapper.
- @p
-
pl (
int NumBands, string ImageClassName)Creates a planar ImageType.
- @p
NumBandsis the number of bands. - @p
ImageClassNameis a full gray image class name or supported short image name. - @r
AnImageType wrapper.
- @p
-
il (
int NumBands, string ImageClassName)Creates an interleaved ImageType.
- @p
NumBandsis the number of bands. - @p
ImageClassNameis a full interleaved image class name or supported short image name. - @r
AnImageType wrapper.
- @p
class: boofcv_images
[22:14] static extends: object
Shared image wrapper helper methods.
Methods
-
grayObj (
string ClassName, int Width, int Height, object Obj = null)Creates a Java BoofCV image object or returns an existing wrapped object.
- @p
ClassNameis the full Java image class name. - @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image. - @r
AnAussomJavaObject containing the BoofCV image.
- @p
-
interleavedObj (
string ClassName, int Width, int Height, int NumBands, object Obj = null)Creates a Java BoofCV interleaved image object or returns an existing wrapped object.
- @p
ClassNameis the full Java image class name. - @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
NumBandsis the number of bands per pixel. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image. - @r
AnAussomJavaObject containing the BoofCV image.
- @p
-
wrapImage (
string ClassName, object Obj)Wraps a Java BoofCV image object in the matching Aussom image wrapper.
- @p
ClassNameis a full BoofCV image class name or one of u8, grayu8, s8, grays8, u16, grayu16, s16, grays16, s32, grays32, s64, grays64, f32, grayf32, f64, grayf64, interleaved_u8, interleavedu8, interleaved_f32, or interleavedf32. - @p
Objis an existing BoofCV image Java object or wrapper. - @r
Thematching Aussom image wrapper.
- @p
class: ImageType
[1293:7] extends: object
ImageType wraps boofcv.struct.image.ImageType.
Members
- obj
Methods
-
ImageType (
object Obj = null)Wraps an existing BoofCV ImageType object.
- @p
Objis an existing AussomJavaObject or wrapper.
- @p
-
getFamily ()
Gets the image family.
- @r
AnAussomJavaObject wrapping ImageType.Family.
- @r
-
getNumBands ()
Gets the number of bands.
- @r
Thenumber of bands.
- @r
-
getDataType ()
Gets the image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayF64
[909:7] extends: object
GrayF64 wraps boofcv.struct.image.GrayF64.
Members
- obj
Methods
-
GrayF64 (
int Width = 0, int Height = 0, object Obj = null)Creates a 64-bit floating point gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, double Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, double Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayF64 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayF64-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayF64 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayS8
[172:7] extends: object
GrayS8 wraps boofcv.struct.image.GrayS8.
Members
- obj
Methods
-
GrayS8 (
int Width = 0, int Height = 0, object Obj = null)Creates a signed 8-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayS8 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayS8-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayS8 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: Planar
[1032:7] extends: object
Planar wraps boofcv.struct.image.Planar.
Members
- obj
Methods
-
Planar (
string BandTypeName = "u8", int Width = 0, int Height = 0, int NumBands = 3, object Obj = null)Creates a planar image or wraps an existing Java object.
- @p
BandTypeNameis a full gray image class name or supported short image name. - @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
NumBandsis the number of bands. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getNumBands ()
Gets the number of image bands.
- @r
Thenumber of bands.
- @r
-
getBand (
int Index)Gets a band image.
- @p
Indexis the band index. - @r
AnAussomJavaObject for the band image.
- @p
-
setBand (
int Index, object Image)Sets a band image.
- @p
Indexis the band index. - @p
Imageis a BoofCV gray image wrapper or Java object.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
reshape (
int Width, int Height, int NumBands)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels. - @p
NumBandsis the new number of bands.
- @p
-
clone ()
Clones this image.
- @r
Anew Planar wrapper around the cloned image.
- @r
class: GrayU8
[75:7] extends: object
GrayU8 wraps boofcv.struct.image.GrayU8.
Members
- obj
Methods
-
GrayU8 (
int Width = 0, int Height = 0, object Obj = null)Creates an unsigned 8-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayU8 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayU8-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayU8 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayS64
[663:7] extends: object
GrayS64 wraps boofcv.struct.image.GrayS64.
Members
- obj
Methods
-
GrayS64 (
int Width = 0, int Height = 0, object Obj = null)Creates a signed 64-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayS64 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayS64-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayS64 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayU16
[294:7] extends: object
GrayU16 wraps boofcv.struct.image.GrayU16.
Members
- obj
Methods
-
GrayU16 (
int Width = 0, int Height = 0, object Obj = null)Creates an unsigned 16-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayU16 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayU16-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayU16 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayS16
[417:7] extends: object
GrayS16 wraps boofcv.struct.image.GrayS16.
Members
- obj
Methods
-
GrayS16 (
int Width = 0, int Height = 0, object Obj = null)Creates a signed 16-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayS16 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayS16-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayS16 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: GrayF32
[786:7] extends: object
GrayF32 wraps boofcv.struct.image.GrayF32.
Members
- obj
Methods
-
GrayF32 (
int Width = 0, int Height = 0, object Obj = null)Creates a 32-bit floating point gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, double Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, double Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayF32 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayF32-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayF32 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r
class: InterleavedF32
[1201:7] extends: object
InterleavedF32 wraps boofcv.struct.image.InterleavedF32.
Members
- obj
Methods
-
InterleavedF32 (
int Width = 0, int Height = 0, int NumBands = 1, object Obj = null)Creates a 32-bit floating point interleaved image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
NumBandsis the number of bands per pixel. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
getNumBands ()
Gets the number of bands per pixel.
- @r
Thenumber of bands.
- @r
-
getImageType ()
Gets the BoofCV image type.
- @r
AnAussomJavaObject wrapping ImageType.
- @r
-
get (
int X, int Y, int Band)Gets one band from one pixel.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Bandis the band index. - @r
Theband value.
- @p
-
set (
int X, int Y, int Band, double Value)Sets one band on one pixel.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Bandis the band index. - @p
Valueis the band value.
- @p
-
reshape (
int Width, int Height, int NumBands)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels. - @p
NumBandsis the new number of bands.
- @p
-
clone ()
Clones this image.
- @r
Anew InterleavedF32 wrapper around the cloned image.
- @r
class: GrayS32
[540:7] extends: object
GrayS32 wraps boofcv.struct.image.GrayS32.
Members
- obj
Methods
-
GrayS32 (
int Width = 0, int Height = 0, object Obj = null)Creates a signed 32-bit gray image or wraps an existing Java object.
- @p
Widthis the image width in pixels. - @p
Heightis the image height in pixels. - @p
Objis an existing AussomJavaObject or wrapper, or null to create a new image.
- @p
-
getWidth ()
Gets the image width.
- @r
Theimage width in pixels.
- @r
-
getHeight ()
Gets the image height.
- @r
Theimage height in pixels.
- @r
-
get (
int X, int Y)Gets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
set (
int X, int Y, int Value)Sets a pixel value with bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
unsafe_get (
int X, int Y)Gets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @r
Thepixel value.
- @p
-
unsafe_set (
int X, int Y, int Value)Sets a pixel value without bounds checks.
- @p
Xis the x coordinate. - @p
Yis the y coordinate. - @p
Valueis the pixel value.
- @p
-
reshape (
int Width, int Height)Reshapes this image.
- @p
Widthis the new width in pixels. - @p
Heightis the new height in pixels.
- @p
-
subimage (
int X0, int Y0, int X1, int Y1)Creates a subimage view.
- @p
X0is the inclusive lower x coordinate. - @p
Y0is the inclusive lower y coordinate. - @p
X1is the exclusive upper x coordinate. - @p
Y1is the exclusive upper y coordinate. - @r
AGrayS32 wrapper around the subimage view.
- @p
-
setTo (
object Other)Copies another image into this image.
- @p
Otheris another GrayS32-compatible image. - @r
Thisimage.
- @p
-
clone ()
Clones this image.
- @r
Anew GrayS32 wrapper around the cloned image.
- @r
-
getDataType ()
Gets the BoofCV image data type.
- @r
AnAussomJavaObject wrapping ImageDataType.
- @r