Package me.clarius.sdk
Class RawImageInfo
java.lang.Object
me.clarius.sdk.RawImageInfo
Raw image information supplied with each frame.
-
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleAcquisition angle for volumetric data.doubleAxial microns per sample.intBits per sample.intSize of the jpeg image, 0 if not a jpeg compressed image.doubleLateral microns per line.intNumber of ultrasound lines in the image.intFlag specifying data is rf and not envelope.intNumber of samples per line in the image.TgcInfo[]TGC points.longTimestamp of image. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.RawImageInfo(int lines, int samples, int bitsPerSample, double axialSize, double lateralSize, long tm, int jpeg, int rf, double angle, TgcInfo[] tgc) Constructor with parameters. -
Method Summary
-
Field Details
-
lines
public int linesNumber of ultrasound lines in the image. -
samples
public int samplesNumber of samples per line in the image. -
bitsPerSample
public int bitsPerSampleBits per sample. -
axialSize
public double axialSizeAxial microns per sample. -
lateralSize
public double lateralSizeLateral microns per line. -
tm
public long tmTimestamp of image. -
jpeg
public int jpegSize of the jpeg image, 0 if not a jpeg compressed image. -
rf
public int rfFlag specifying data is rf and not envelope. -
angle
public double angleAcquisition angle for volumetric data. -
tgc
TGC points.
-
-
Constructor Details
-
RawImageInfo
public RawImageInfo()Default constructor. -
RawImageInfo
public RawImageInfo(int lines, int samples, int bitsPerSample, double axialSize, double lateralSize, long tm, int jpeg, int rf, double angle, TgcInfo[] tgc) Constructor with parameters.- Parameters:
lines- Number of ultrasound lines in the image.samples- Number of samples per line in the image.bitsPerSample- Bits per sample.axialSize- Axial microns per sample.lateralSize- Lateral microns per line.tm- Timestamp of image.jpeg- Size of the jpeg image, 0 if not a jpeg compressed image.rf- Flag specifying data is rf and not envelope.angle- Acquisition angle for volumetric data.tgc- TGC points.
-