Class SoProxyDataAdapter

  • All Implemented Interfaces:
    SafeDisposable

    @Deprecated(since="2023.2")
    public class SoProxyDataAdapter
    extends SoImageDataAdapter
    Deprecated.
    As of Open Inventor 2023.2. ImageViz API is replaced by the new ImageDev toolkit.
    Proxy image data adapter for in memory data. Defines a subset of the original image as an image. See SoImageDataAdapter for methods to access the data.

    File format/default:

    ProxyDataAdapter {

      extent 0,0,0, 1,1,1
      orientation 0 0 0 1
      image NULL
      roi 0 0 0 0 0 0 0 0
      channels 1 0
    }

    SoImageDataAdapter, SoFileDataAdapter, SoVolumeReaderAdapter

    • Field Detail

      • image

        public final SoSFImageDataAdapter image
        Deprecated.
        Defines the original image. Default value is NULL.
      • roi

        public final SoSFBox4i32 roi
        Deprecated.
        Defines a region of interest (ROI) in voxels on the original image. Default value is an empty box. The box is defined by a 'min' corner and a 'max' corner. If the specified box is larger than the image, the box is clamped to the dimensions of the image.

        Example for an 512x512 image and a {min=(256,256), max=(400,600)}-box, the resulting box will be {min=(256,256), max=(400,512)}-box.

      • channels

        public final SoMFInt32 channels
        Deprecated.
        Defines the list of channels selected on the image. Default value is the first channel (0) which usually corresponds to:
        • Intensity for a gray level image, or
        • Red channel for RGB or RGBA image.
    • Constructor Detail

      • SoProxyDataAdapter

        public SoProxyDataAdapter()
        Deprecated.
        Default constructor.