January 2019
Intermediate to advanced
316 pages
8h 16m
English
Let's visualize a 3D image using matplotlib, as shown in the following code:
fig = plt.figure()ax = fig.gca(projection='3d')ax.set_aspect('equal')
ax.voxels(voxels, edgecolor="red")
plt.show()plt.savefig(file_path)
The first screenshot represents an aircraft in a 3D plane:
The second screenshot represents a table in a 3D plane:
The third screenshot represents a chair in a 3D plane:
We have successfully downloaded, extracted, ...
Read now
Unlock full access