이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
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.
인용 양식
Tim (2026). VOXview (https://kr.mathworks.com/matlabcentral/fileexchange/78745-voxview), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 받은 파일: vol3d v2
| 버전 | 퍼블리시됨 | 릴리스 정보 | 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 |