Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qim3d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QIM
Tools
qim3d
Merge requests
!126
Sphericity
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sphericity
sphericity
into
main
Overview
0
Commits
8
Pipelines
0
Changes
2
Merged
s212246
requested to merge
sphericity
into
main
8 months ago
Overview
0
Commits
8
Pipelines
0
Changes
2
Create a method to compute sphericity using a mesh based approach
0
0
Merge request reports
Viewing commit
d58dc824
Prev
Next
Show latest version
2 files
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
d58dc824
add html visualization of mesh of previous task
· d58dc824
Alessia Saccardo
authored
8 months ago
qim3d/processing/mesh.py
+
1
−
1
View file @ d58dc824
Edit in single-file editor
Open in Web IDE
Show full file
@@ -39,7 +39,7 @@ def create_mesh(
mesh = qim3d.processing.create_mesh(vol, step_size=3)
qim3d.viz.mesh(mesh.vertices, mesh.faces)
```
<iframe src=
"
https://platform.qim.dk/k3d/mesh_visualization.html
"
width=
"
100%
"
height=
"
500
"
frameborder=
"
0
"
></iframe>
"""
if
volume
.
ndim
!=
3
:
raise
ValueError
(
"
The input volume must be a 3D numpy array.
"
)
Loading