[Python API Contextcapture] Automatic tie point export

Is it possible to export automatic points using Python API for Contextcapture? The Blockexchange exports in large XML which is not optimal.

Parents
  • It is possible to get automatic tie points efficiently from the SDK:
    Use the following functions in the block API: getNumTiePoints and getTiePoint

    getTiePoint((int)arg2) → TiePoint

    Return an element in the array of tie points generated by aerotriangulation.

    getNumTiePoints() → int

    Return the number of tie points generated by aerotriangulation.

     

Reply
  • It is possible to get automatic tie points efficiently from the SDK:
    Use the following functions in the block API: getNumTiePoints and getTiePoint

    getTiePoint((int)arg2) → TiePoint

    Return an element in the array of tie points generated by aerotriangulation.

    getNumTiePoints() → int

    Return the number of tie points generated by aerotriangulation.

     

Children