|
||||||
|
Q. What is a recommended method to make shaded, ray-traced images of very large data sets?A. Use compute shade - a combined colorizer/compute gradient/gradient shade module This module combines the functions of the colorizer, compute gradient, and gradient shade modules into a single, memory efficient module. These modules are used primarily to make shaded, ray-traced images. The problem is that they are highly inefficient in terms of memory allocation:
The compute shade module does gradient computation, colorizing, and shading on a per slice basis. All in all, it takes less time than running the original three modules in sequence. However, it does take longer than running gradient shade alone. Therefore, it is most useful for extremely large data sets (> 100 * 100 * 100 voxels) which would normally choke a system's memory rather than small data sets.
| |||||