Package me.clarius.sdk
Class ProcessedImageInfo
java.lang.Object
me.clarius.sdk.ProcessedImageInfo
Processed image information supplied with each frame.
-
Field Summary
FieldsModifier and TypeFieldDescriptiondouble
Acquisition angle for volumetric data.int
Bits per pixel.Flag specifying the format of the image (see format definitions above).int
Height of the image in pixels.int
Total size of image in bytes.double
Microns per pixel (always 1:1 aspect ratio axially/laterally).double
Image origin in microns in the horizontal axis.double
Image origin in microns in the vertical axis.int
Flag that the image is an overlay without grayscale (ie.TgcInfo[]
TGC points.long
Timestamp of images.int
Width of the image in pixels. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ProcessedImageInfo
(int width, int height, int bitsPerPixel, int imageSize, double micronsPerPixel, double originX, double originY, long tm, double angle, int overlay, ImageFormat format, TgcInfo[] tgc) Constructor with parameters. -
Method Summary
-
Field Details
-
width
public int widthWidth of the image in pixels. -
height
public int heightHeight of the image in pixels. -
bitsPerPixel
public int bitsPerPixelBits per pixel. -
imageSize
public int imageSizeTotal size of image in bytes. -
micronsPerPixel
public double micronsPerPixelMicrons per pixel (always 1:1 aspect ratio axially/laterally). -
originX
public double originXImage origin in microns in the horizontal axis. -
originY
public double originYImage origin in microns in the vertical axis. -
tm
public long tmTimestamp of images. -
angle
public double angleAcquisition angle for volumetric data. -
overlay
public int overlayFlag 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.
-
-
Constructor Details
-
ProcessedImageInfo
public ProcessedImageInfo()Default constructor. -
ProcessedImageInfo
public ProcessedImageInfo(int width, int height, int bitsPerPixel, int imageSize, double micronsPerPixel, double originX, double originY, long tm, double angle, 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.angle
- Acquisition angle for volumetric data.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.
-