boofcv.struct.image
Class GrayF64
- java.lang.Object
-
- boofcv.struct.image.ImageBase<T>
-
- boofcv.struct.image.ImageGray<T>
-
- boofcv.struct.image.GrayF<GrayF64>
-
- boofcv.struct.image.GrayF64
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class GrayF64 extends GrayF<GrayF64>
Image with a pixel type of 64-bit float.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description double[]data
-
Constructor Summary
Constructors Constructor and Description GrayF64()Creates an image with no data declared and the width/height set to zero.GrayF64(int width, int height)Creates a new gray scale (single band/color) image.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description GrayF64_createNew(int imgWidth, int imgHeight)Returns a new image.doubleget(int x, int y)Returns the value of the specified pixel.double[]getData()ImageDataTypegetDataType()Returns image type informationvoidprint(java.lang.String format)voidprintInt()voidset(int x, int y, double value)Sets the value of the specified pixel.voidsetData(double[] data)doubleunsafe_get(int x, int y)voidunsafe_set(int x, int y, double value)-
Methods inherited from class boofcv.struct.image.ImageBase
clone, createSameShape, getHeight, getImageType, getIndex, getStartIndex, getStride, getWidth, indexToPixel, isInBounds, isSubimage, setHeight, setStartIndex, setStride, setWidth, subimage
-
-
-
-
Constructor Detail
-
GrayF64
public GrayF64(int width, int height)Creates a new gray scale (single band/color) image.- Parameters:
width- number of columns in the image.height- number of rows in the image.
-
GrayF64
public GrayF64()
Creates an image with no data declared and the width/height set to zero.
-
-
Method Detail
-
get
public double get(int x, int y)Returns the value of the specified pixel.- Parameters:
x- pixel coordinate.y- pixel coordinate.- Returns:
- Pixel intensity value.
-
unsafe_get
public double unsafe_get(int x, int y)
-
set
public void set(int x, int y, double value)Sets the value of the specified pixel.- Parameters:
x- pixel coordinate.y- pixel coordinate.value- The pixel's new value.
-
unsafe_set
public void unsafe_set(int x, int y, double value)
-
print
public void print(java.lang.String format)
-
printInt
public void printInt()
-
_createNew
public GrayF64 _createNew(int imgWidth, int imgHeight)
Description copied from class:ImageBaseReturns a new image. If either width or height are set to -1 then none of the class parameters set. Otherwise a new image is created with the specified dimensions which has all other parameters the same as the original matrix.- Specified by:
_createNewin classImageBase<GrayF64>- Parameters:
imgWidth- Width of the new imageimgHeight- height of the new image- Returns:
- new image
-
getDataType
public ImageDataType getDataType()
Description copied from class:ImageGrayReturns image type information- Overrides:
getDataTypein classGrayF<GrayF64>- Returns:
- The type of image.
-
getData
public double[] getData()
-
setData
public void setData(double[] data)
-
-
DataMelt 3.0 © DataMelt by jWork.ORG