I have a 3D point cloud:
import numpy as np
x = np.array([...])
y = np.array([...])
z = np.array([...])
Is it possible to "reconstruct" a 3D surface using skiamge
's marching_cubes
from this 3D point cloud?
I checked skimage's documentation but didn't have a clue. Any help or hint is appreciated.