Skip to content Skip to sidebar Skip to footer

Python Tkinter: Creating A Window Which Runs My Custom Code

I am Creating a python custom code to Visualise scientific/medical data in 3D. This code should be implemented in the GUI I am creating with TKInter, so as to visualise these data

Solution 1:

VTK should ship with the vtkTkRenderWindowInteractor functionality but is per default not built or included in most distributions like pypi or anaconda. You would then most likely have to build VTK manually with the VTK_USE_TK cmake flag, see for example this thread:

https://discourse.vtk.org/t/error-importing-vtktkrenderwindowinteractor-in-vtk-8-2-0/856/27

Post a Comment for "Python Tkinter: Creating A Window Which Runs My Custom Code"