Merge branch 'bordel_laurent' of git.inpt.fr:tocard-inc/enseeiht/projet-be into bordel_laurent

This commit is contained in:
Laureηt 2023-01-20 10:55:08 +01:00
commit d12aa5ce71
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI

43
src/borders.py Normal file
View file

@ -0,0 +1,43 @@
import numpy as np
import matplotlib.pyplot as plt
def update_border(voxel_values, xy=None):
voxel_values = voxel_values > 0
if xy is None:
x_m1 = voxel_values[1:, :, :]
x_m1 = np.concatenate((x_m1, np.zeros((1, x_m1.shape[1], x_m1.shape[2]))), axis=0)
x_p1 = voxel_values[:-1, :, :]
x_p1 = np.concatenate((np.zeros((1, x_p1.shape[1], x_p1.shape[2])), x_p1), axis=0)
y_m1 = voxel_values[:, 1:, :]
y_m1 = np.concatenate((y_m1, np.zeros((y_m1.shape[0], 1, y_m1.shape[2]))), axis=1)
y_p1 = voxel_values[:, :-1, :]
y_p1 = np.concatenate((np.zeros((y_p1.shape[0], 1, y_p1.shape[2])), y_p1), axis=1)
z_m1 = voxel_values[:, :, 1:]
z_m1 = np.concatenate((z_m1, np.zeros((z_m1.shape[0], z_m1.shape[1], 1))), axis=2)
z_p1 = voxel_values[:, :, :-1]
z_p1 = np.concatenate((np.zeros((z_p1.shape[0], z_p1.shape[1], 1)), z_p1), axis=2)
return np.logical_or.reduce((voxel_values != x_m1, voxel_values != x_p1,
voxel_values != y_m1, voxel_values != y_p1,
voxel_values != z_m1, voxel_values != z_p1))
if __name__ == '__main__':
voxel_values = np.array([[[np.sqrt(x**2 + y**2 + z**2) < 20 for z in np.arange(-10, 10, 1.0)] for y in np.arange(-10, 10, 1.0)] for x in np.arange(-10, 10, 1.0)])
border = update_border(voxel_values)
# Plot voxel grid that are the border
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(np.where(voxel_values)[0], np.where(voxel_values)[1], np.where(voxel_values)[2], c='r', marker='o')
ax.scatter(np.where(border)[0], np.where(border)[1], np.where(border)[2], c='b', marker='o', s=1)
plt.show()