How to display a 3D plot of a 3D array isosurface with mplot3D or similar

Just to elaborate on my comment above, matplotlib’s 3D plotting really isn’t intended for something as complex as isosurfaces. It’s meant to produce nice, publication-quality vector output for really simple 3D plots. It can’t handle complex 3D polygons, so even if implemented marching cubes yourself to create the isosurface, it wouldn’t render it properly. However, … Read more

scipy with py2exe

This seems to be a problem common to py2exe and pyinstaller with scipy 0.11.0 as discussed here. The temporal solution given in that thread is to import the file manually: adding the following codes into your program def dependencies_for_myprogram(): from scipy.sparse.csgraph import _validation Problem solved for both pyInstaller and py2exe You can alternatively try including … Read more