fplot3
3D surface plot of focalstacking results in SI-units
Contents
Syntax
fplot3(topologicalBase)
fplot3(..., ' PropertyName ', 'PropertyValue',...)
Description
fplot3(topologicalBase) plots the topology provided by topologicalBase = ffit(...).
fplot3(..., ' PropertyName ', 'PropertyValue',...) manipulates plot characteristic by setting the fplot3-properties. Enter properties as one or more name-value pairs.
Options
This section provides a description of properties. Curly braces { } enclose default values
| ROI | |
| {[0,0,image width, image height]} | |
| Use ROI if clipping was used by fanalyze. | |
| Datapoints | |
| {on} | off | |
| Specifies if the fit's datapoints should be shown | |
| Image | |
| An RGB image may be provided as texture for the surface plotted. | |
| Axis | |
| {on} | off | |
| If off the axis is hidden | |
| Grid | |
| {on} | off | |
| If off the axis grid is hidden | |
| Parent | |
| If given, fplot3 plots the topology in the axes with given handle rather than the current axes. |
Examples
Simple example:
fplot3(overview) view(50.5,34)
Advanced example: Disabling axis, datapoints and grid while adding an image
fplot3(overview, 'Image', I, 'Axis', 'off', 'Grid', 'off','Datapoints','off') view(50.5,34)