Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
VOXview is an easy-to-use function for visualizing small 3D scalar or RGB (i.e. MxNxO x3) arrays. This function was specifically designed to give the user independent control of voxel alpha, intensity, and color values, something that is currently not possible when using MATLAB's "volshow" command.
Example:
VOXview(rand(50, 50, 50, 3)); % Generate volume filled with voxels having random RGB values.
Additionally, the function gives users direct control of:
- Colormaps (for scalar fields)
- Patch properties (e.g. edge colors, reflectivity options)
- Alpha threshold (faces below this value are left un-drawn)
- Multiple types of transparency computation methods
- Voxel size
- Bounding boxes
And lastly it provides the patch-handle for the final object for efficient manipulation after the fact.
Run VOXview_demo.m for demonstrations of different input options.
Run Lamp_demo for an animation demonstration exploiting voxel patch handles.
Important performance note:
VOXview has been updated to use texture mapping, so like vol3d it can now render much larger volumes (e.g. 500 voxels on edge). This enables simple colormap updating as well, however there may be some backward compatibility issues. To improve backward compatibility set texturemapping to false, which will render the volume using a single call to patch as done originally. This enables some other features to be used and simplifies patch property modification using the returned handle, however the rendering slows down considerably for large volumes and in this mode is not suggested for volumes larger than 100 pixels on edge.
Acknowledgements:
vol3d v2 inspired the inclusion of texture mapping as an option.
Citation pour cette source
Tim (2026). VOXview (https://fr.mathworks.com/matlabcentral/fileexchange/78745-voxview), MATLAB Central File Exchange. Extrait(e) le .
Remerciements
Inspiré par : vol3d v2
Informations générales
- Version 2.0.0 (528 ko)
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions
Plateformes compatibles
- Windows
- macOS
- Linux
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 2.0.0 | Added texture mapping to greatly improve the renderable size of volume.
|
||
| 1.1 | - Calling colorbar now generates a colorbar with accurate scale and correct colormap.
|
||
| 1.0.1 | Updates / corrections to function description |
||
| 1.0.0 |