Class MovieTrackingReconstruction


  • public class MovieTrackingReconstruction
    extends CFacade
    Generated facet for DNA struct type 'MovieTrackingReconstruction'.

    Class Documentation

    • Field Detail

      • __DNA__SDNA_INDEX

        public static final int __DNA__SDNA_INDEX
        This is the sdna index of the struct MovieTrackingReconstruction.

        It is required when allocating a new block to store data for MovieTrackingReconstruction.

        See Also:
        StructDNA, BlockTable, Constant Field Values
      • __DNA__FIELD__flag

        public static final long[] __DNA__FIELD__flag
        Field descriptor (offset) for struct member 'flag'.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MovieTrackingReconstruction movietrackingreconstruction = ...;
         CPointer<Object> p = movietrackingreconstruction.__dna__addressof(MovieTrackingReconstruction.__DNA__FIELD__flag);
         CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'flag'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__error

        public static final long[] __DNA__FIELD__error
        Field descriptor (offset) for struct member 'error'.

        Field Documentation

        Blender Source Code

        Average error of reconstruction.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MovieTrackingReconstruction movietrackingreconstruction = ...;
         CPointer<Object> p = movietrackingreconstruction.__dna__addressof(MovieTrackingReconstruction.__DNA__FIELD__error);
         CPointer<Float> p_error = p.cast(new Class[]{Float.class});
         

        Metadata

        • Field: 'error'
        • Signature: 'float'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__last_camera

        public static final long[] __DNA__FIELD__last_camera
        Field descriptor (offset) for struct member 'last_camera'.

        Field Documentation

        Blender Source Code

        Most recently used camera.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MovieTrackingReconstruction movietrackingreconstruction = ...;
         CPointer<Object> p = movietrackingreconstruction.__dna__addressof(MovieTrackingReconstruction.__DNA__FIELD__last_camera);
         CPointer<Integer> p_last_camera = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'last_camera'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__camnr

        public static final long[] __DNA__FIELD__camnr
        Field descriptor (offset) for struct member 'camnr'.

        Field Documentation

        Blender Source Code

        Number of reconstructed cameras.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MovieTrackingReconstruction movietrackingreconstruction = ...;
         CPointer<Object> p = movietrackingreconstruction.__dna__addressof(MovieTrackingReconstruction.__DNA__FIELD__camnr);
         CPointer<Integer> p_camnr = p.cast(new Class[]{Integer.class});
         

        Metadata

        • Field: 'camnr'
        • Signature: 'int'
        • Actual Size (32bit/64bit): 4/4
      • __DNA__FIELD__cameras

        public static final long[] __DNA__FIELD__cameras
        Field descriptor (offset) for struct member 'cameras'.

        Field Documentation

        Blender Python API

        (read-only) Collection of solved cameras

        Blender Source Code

        Reconstructed cameras.

        Pointer Arithmetics

        This is how you get a reference on the corresponding field in the struct:

         MovieTrackingReconstruction movietrackingreconstruction = ...;
         CPointer<Object> p = movietrackingreconstruction.__dna__addressof(MovieTrackingReconstruction.__DNA__FIELD__cameras);
         CPointer<CPointer<MovieReconstructedCamera>> p_cameras = p.cast(new Class[]{CPointer.class, MovieReconstructedCamera.class});
         

        Metadata

        • Field: 'cameras'
        • Signature: 'MovieReconstructedCamera*'
        • Actual Size (32bit/64bit): 4/8
    • Constructor Detail

      • MovieTrackingReconstruction

        public MovieTrackingReconstruction​(long __address,
                                           Block __block,
                                           BlockTable __blockTable)
    • Method Detail

      • getFlag

        public int getFlag()
                    throws java.io.IOException
        Get method for struct member 'flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__flag
      • setFlag

        public void setFlag​(int flag)
                     throws java.io.IOException
        Set method for struct member 'flag'.
        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__flag
      • getError

        public float getError()
                       throws java.io.IOException
        Get method for struct member 'error'.

        Field Documentation

        Blender Source Code

        Average error of reconstruction.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__error
      • setError

        public void setError​(float error)
                      throws java.io.IOException
        Set method for struct member 'error'.

        Field Documentation

        Blender Source Code

        Average error of reconstruction.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__error
      • getLast_camera

        public int getLast_camera()
                           throws java.io.IOException
        Get method for struct member 'last_camera'.

        Field Documentation

        Blender Source Code

        Most recently used camera.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__last_camera
      • setLast_camera

        public void setLast_camera​(int last_camera)
                            throws java.io.IOException
        Set method for struct member 'last_camera'.

        Field Documentation

        Blender Source Code

        Most recently used camera.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__last_camera
      • getCamnr

        public int getCamnr()
                     throws java.io.IOException
        Get method for struct member 'camnr'.

        Field Documentation

        Blender Source Code

        Number of reconstructed cameras.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__camnr
      • setCamnr

        public void setCamnr​(int camnr)
                      throws java.io.IOException
        Set method for struct member 'camnr'.

        Field Documentation

        Blender Source Code

        Number of reconstructed cameras.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__camnr
      • getCameras

        public CPointer<MovieReconstructedCamera> getCameras()
                                                      throws java.io.IOException
        Get method for struct member 'cameras'.

        Field Documentation

        Blender Python API

        (read-only) Collection of solved cameras

        Blender Source Code

        Reconstructed cameras.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__cameras
      • setCameras

        public void setCameras​(CPointer<MovieReconstructedCamera> cameras)
                        throws java.io.IOException
        Set method for struct member 'cameras'.

        Field Documentation

        Blender Python API

        (read-only) Collection of solved cameras

        Blender Source Code

        Reconstructed cameras.

        Throws:
        java.io.IOException
        See Also:
        __DNA__FIELD__cameras