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.doubleframe rate in hz.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, 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.
-