Package me.clarius.sdk
Class ProcessedImageInfo
- java.lang.Object
-
- me.clarius.sdk.ProcessedImageInfo
-
public class ProcessedImageInfo extends java.lang.ObjectProcessed image information supplied with each frame.
-
-
Field Summary
Fields Modifier and Type Field Description intbitsPerPixelBits per pixel.ImageFormatformatFlag specifying the format of the image (see format definitions above).intheightHeight of the image in pixels.intimageSizeTotal size of image in bytes.doublemicronsPerPixelMicrons per pixel (always 1:1 aspect ratio axially/laterally).doubleoriginXImage origin in microns in the horizontal axis.doubleoriginYImage origin in microns in the vertical axis.intoverlayFlag that the image is an overlay without grayscale (ie.TgcInfo[]tgcTGC points.longtmTimestamp of images.intwidthWidth of the image in pixels.
-
Constructor Summary
Constructors Constructor Description ProcessedImageInfo()Default constructor.ProcessedImageInfo(int width, int height, int bitsPerPixel, int imageSize, double micronsPerPixel, double originX, double originY, long tm, int overlay, ImageFormat format, TgcInfo[] tgc)Constructor with parameters.
-
-
-
Field Detail
-
width
public int width
Width of the image in pixels.
-
height
public int height
Height of the image in pixels.
-
bitsPerPixel
public int bitsPerPixel
Bits per pixel.
-
imageSize
public int imageSize
Total size of image in bytes.
-
micronsPerPixel
public double micronsPerPixel
Microns per pixel (always 1:1 aspect ratio axially/laterally).
-
originX
public double originX
Image origin in microns in the horizontal axis.
-
originY
public double originY
Image origin in microns in the vertical axis.
-
tm
public long tm
Timestamp of images.
-
overlay
public int overlay
Flag that the image is an overlay without grayscale (ie. color doppler or strain).
-
format
public ImageFormat format
Flag specifying the format of the image (see format definitions above).
-
tgc
public TgcInfo[] tgc
TGC points.
-
-
Constructor Detail
-
ProcessedImageInfo
public ProcessedImageInfo()
Default constructor.
-
ProcessedImageInfo
public ProcessedImageInfo(int width, int height, int bitsPerPixel, int imageSize, double micronsPerPixel, double originX, double originY, long tm, int overlay, ImageFormat format, TgcInfo[] tgc)Constructor with parameters.- Parameters:
width- Width of the image in pixels.height- Height of the image in pixels.bitsPerPixel- Bits per pixel.imageSize- Total size of image in bytes.micronsPerPixel- Microns per pixel (always 1:1 aspect ratio axially/laterally).originX- Image origin in microns in the horizontal axis.originY- Image origin in microns in the vertical axis.tm- Timestamp of images.overlay- Flag that the image is an overlay without grayscale (ie. color doppler or strain).format- Flag specifying the format of the image (see format definitions above).tgc- TGC points.
-
-