Hi Nyugen,
How can i extract the convergence value from the Python API.
73 evaluations in 0.21095 seconds, success
22.1387 -41.8056 250.542 -179.549 1.30052 89.4314 → 0.8731 (0.866556)
Hi Nyugen,
How can i extract the convergence value from the Python API.
73 evaluations in 0.21095 seconds, success
22.1387 -41.8056 250.542 -179.549 1.30052 89.4314 → 0.8731 (0.866556)
Hi Minhas,
We currently don’t have a dedicated Python binding function to get the similarity measure directly from the Xray2D3DRegistration algorithm. But you can try one of these workarounds:
import io
from contextlib import redirect_stdout
buf = io.StringIO()
with redirect_stdout(buf):
imf.execute_algorithm(...)
output = buf.getvalue()
print("Captured:", output)
The above mentioned approach is giving me an empty string. I shall try generating from the DRR for the same.
Imfusion Verion : 3.4.1.5