Class RawImageInfo


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

      Fields 
      Modifier and Type Field Description
      double axialSize
      Axial microns per sample.
      int bitsPerSample
      Bits per sample.
      int jpeg
      Size of the jpeg image, 0 if not a jpeg compressed image.
      double lateralSize
      Lateral microns per line.
      int lines
      Number of ultrasound lines in the image.
      int rf
      Flag specifying data is rf and not envelope.
      int samples
      Number of samples per line in the image.
      TgcInfo[] tgc
      TGC points.
      long tm
      Timestamp of image.
    • Constructor Summary

      Constructors 
      Constructor Description
      RawImageInfo()
      Default constructor.
      RawImageInfo​(int lines, int samples, int bitsPerSample, double axialSize, double lateralSize, long tm, int jpeg, int rf, TgcInfo[] tgc)
      Constructor with parameters.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • 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.
      • tgc

        public TgcInfo[] tgc
        TGC points.
    • Constructor Detail

      • RawImageInfo

        public RawImageInfo()
        Default constructor.
      • RawImageInfo

        public RawImageInfo​(int lines,
                            int samples,
                            int bitsPerSample,
                            double axialSize,
                            double lateralSize,
                            long tm,
                            int jpeg,
                            int rf,
                            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.
        tgc - TGC points.