Changeset 42128
- Timestamp:
- Mar 19, 2022, 8:43:32 AM (4 years ago)
- Location:
- trunk/Ohana/src/opihi/cmd.data
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.data/Makefile
r42082 r42128 106 106 $(SRC)/mget3d.$(ARCH).o \ 107 107 $(SRC)/mslice.$(ARCH).o \ 108 $(SRC)/mlayer.$(ARCH).o \ 108 109 $(SRC)/minterpolate.$(ARCH).o \ 109 110 $(SRC)/medimage.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.data/init.c
r42082 r42128 97 97 int mget3d PROTO((int, char **)); 98 98 int mslice PROTO((int, char **)); 99 int mlayer PROTO((int, char **)); 99 100 int minterp PROTO((int, char **)); 100 101 int medimage_command PROTO((int, char **)); … … 296 297 {1, "mget3d", mget3d, "extract a vector from a 3D image"}, 297 298 {1, "mslice", mslice, "extract an image plane from a 3D image"}, 299 {1, "mlayer", mlayer, "insert an image plane into a 3D image"}, 298 300 {1, "imget", mget, "extract a vector from an image"}, 299 301 {1, "minterp", minterp, "interpolate image pixels"}, -
trunk/Ohana/src/opihi/cmd.data/mslice.c
r40334 r42128 31 31 if (argc != 4) { 32 32 gprint (GP_ERR, "USAGE: mslice <input> <output> plane [-x,-y,-z]\n"); 33 gprint (GP_ERR, " extract 2D image from 3D cube (opposite of mlayer)\n"); 33 34 gprint (GP_ERR, " -z is default\n"); 34 35 return (FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.
