Class RawImageInfo

java.lang.Object
me.clarius.sdk.RawImageInfo

public class RawImageInfo extends Object
Raw image information supplied with each frame.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    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.
    TGC points.
    long
    Timestamp of image.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default 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

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • lines

      public int lines
      Number of ultrasound lines in the image.
    • samples

      public int samples
      Number of samples per line in the image.
    • bitsPerSample

      public int bitsPerSample
      Bits per sample.
    • axialSize

      public double axialSize
      Axial microns per sample.
    • lateralSize

      public double lateralSize
      Lateral microns per line.
    • tm

      public long tm
      Timestamp of image.
    • jpeg

      public int jpeg
      Size of the jpeg image, 0 if not a jpeg compressed image.
    • rf

      public int rf
      Flag specifying data is rf and not envelope.
    • angle

      public double angle
      Acquisition angle for volumetric data.
    • tgc

      public TgcInfo[] 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.