Package me.clarius.sdk
Class RawImageInfo
java.lang.Object
me.clarius.sdk.RawImageInfo
Raw image information supplied with each frame.
-
Field Summary
FieldsModifier and TypeFieldDescriptiondouble
Acquisition angle for volumetric data.double
Axial microns per sample.int
Bits per sample.int
Size of the jpeg image, 0 if not a jpeg compressed image.double
Lateral microns per line.int
Number of ultrasound lines in the image.int
Flag specifying data is rf and not envelope.int
Number of samples per line in the image.TgcInfo[]
TGC points.long
Timestamp 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.
-