Imageload: Difference between revisions
Jump to navigation
Jump to search
imported>Scott No edit summary |
imported>Scott |
||
Line 4: | Line 4: | ||
===Synopsis=== | ===Synopsis=== | ||
: imageDSO = imageload(data); | : imageDSO = imageload; %Load workspace image. | ||
: imageDSO = imageload('other'); | : imageDSO = imageload(data); %Load image from command line. | ||
: imageDSO = imageload('other'); %Load other standard image from file (e.g., .jpg, .gif, etc...) | |||
===Description=== | ===Description=== |
Revision as of 09:55, 5 October 2012
Purpose
GUI to select, build, then load a image DSO into the DataSet Editor.
Synopsis
- imageDSO = imageload; %Load workspace image.
- imageDSO = imageload(data); %Load image from command line.
- imageDSO = imageload('other'); %Load other standard image from file (e.g., .jpg, .gif, etc...)
Description
IMAGELOAD uses lddlgpls.m to find and select image data then calls buildimage.m. If data is omitted, IMAGELOAD will allow the user to load a valid image from the Matlab workspace. If data is the string 'other', it will allow the user to load a recognized standard image file (see imread).