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.double
frame rate in hz.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, double fps, 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. -
fps
public double fpsframe rate in hz. -
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, double fps, 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.fps
- frame rate in hz.tgc
- tgc points.
-