TOC PREV NEXT INDEX

DVread_img2vol

Synopsis

read a series of image files and outputs the data as a volume field.

module DVread_img2vol {
string+IPort2 filename;
int+IPort2 format;
int+IPort2 start;
int+IPort2 end;
int+IPort2 out_format;
string+OPort2 info;
Mesh_Unif+Dim3+Space3+Node_Data+OPort2 out;
omethod+notify_inst+req update<status=1> (
.filename+read+notify+req,
.format+read+notify+opt,
.start+read+notify+req,
.end+read+notify+req,
.out_format+read+notify+req,
.info+write,
.out+write
) = "DVread_img2vol_update";
};

Description

DVread_img2vol reads in a series of image file slices, builds the sliecs into a 3D volume and then outputs the data as a 3D uniform field. The format of the input image files can be explicitly specified or can be automatically detected.

Input

filename

A string. Names the input file to be read. The string can be either the complete absolute pathname, or a relative pathname. If it is relative, it will be interpreted relative to the user's working directory when AVS/Express was started.

format

the format of the images

start

the starting index of the

end

the ending index of the filenames

out_format

the format of the output node data

Output

out

The output uniform field.

Example

Not available.

File

v/dv.v

See also

Not applicable.

TOC PREV NEXT INDEX