Feature extraction
The qim3d
library provides a set of methods for feature extraction on volumetric data
qim3d.features
qim3d.features.area
Compute the surface area of a 3D mesh using the Pygel3D library.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
ndarray or Manifold
|
Either a np.ndarray volume or a mesh object of type pygel3d.hmesh.Manifold. |
required |
Returns:
Name | Type | Description |
---|---|---|
area |
float
|
The surface area of the object. |
Example
Compute area from a mesh:
import qim3d
# Load a mesh from a file
mesh = qim3d.io.load_mesh('path/to/mesh.obj')
# Compute the surface area of the mesh
area = qim3d.features.area(mesh)
print(f'Area: {area}')
Compute area from a np.ndarray:
Source code in qim3d/features/_common_features_methods.py
qim3d.features.volume
Compute the volume of a 3D mesh using the Pygel3D library.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
ndarray or Manifold
|
Either a np.ndarray volume or a mesh object of type pygel3d.hmesh.Manifold. |
required |
Returns:
Name | Type | Description |
---|---|---|
volume |
float
|
The volume of the object. |
Example
Compute volume from a mesh:
import qim3d
# Load a mesh from a file
mesh = qim3d.io.load_mesh('path/to/mesh.obj')
# Compute the volume of the mesh
volume = qim3d.features.volume(mesh)
print(f'Volume: {volume}')
Compute volume from a np.ndarray:
Source code in qim3d/features/_common_features_methods.py
qim3d.features.sphericity
Compute the sphericity of a 3D mesh using the Pygel3D library.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
ndarray or Manifold
|
Either a np.ndarray volume or a mesh object of type pygel3d.hmesh.Manifold. |
required |
Returns:
Name | Type | Description |
---|---|---|
sphericity |
float
|
The sphericity of the object. |
Example
Compute sphericity from a mesh:
import qim3d
# Load a mesh from a file
mesh = qim3d.io.load_mesh('path/to/mesh.obj')
# Compute the sphericity of the mesh
sphericity = qim3d.features.sphericity(mesh)
print(f'Sphericity: {sphericity}')
Compute sphericity from a np.ndarray: