Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

minctoraw(1) [debian man page]

MINCTORAW(1)							 MINC User's Guide						      MINCTORAW(1)

NAME
minctoraw - copy data from a MINC file. SYNOPSIS
minctoraw [options] mincfile DESCRIPTION
minctoraw dumps a chunk of MINC file data to standard output in the format of your choice. This program is largely superceded by mincextract. OPTIONS
-byte Write out data as 8-bit integers -short Write out data as 16-bit integers -int Write out data as 32-bit integers -long Superseded by -int -float Write out data as single precision floating-point values -double Write out data as double precision floating-point values -signed Write out signed data (applies only to integer types) -unsigned Write out unsigned data (applies only to integer types) -range low high Specify the range of output values -normalize Normalize integer pixel values to file max and min (Default) -nonormalize Turn off pixel normalization -help Print summary of command-line options and exit. -version Print the program's version number and exit. SEE ALSO
mincextract(1) $Date: 2004-05-20 21:52:09 $ MINCTORAW(1)

Check Out this Related Man Page

MINCCONVERT(1)							 MINC User's Guide						    MINCCONVERT(1)

NAME
mincconvert - convert between MINC 1 to MINC 2 format. SYNOPSIS
mincconvert [-clobber] [-2] infile outfile mincconvert -help DESCRIPTION
mincconvert copies the input file to the output file, possibly converting the file from MINC 1 to MINC 2 format, or vice versa. With the -template flag, mincconvert creates a "template" volume from the input MINC volume. The template volume preserves all of the structure (dimensions, variables, and attributes) of the input MINC volume but omits all data. Any attempt to read data will return zeroes. The resulting file is typically much shorter than a normal MINC volume, and may be useful for scripts which want to carry such structural information forward into their output files. As a hint to future programmers and users, this program places a special global attribute in the file, with the name class and the value template. OPTIONS
-2 Create a MINC 2 format file -clobber Overwrite a pre-existing output file. -help Print a summary of command line options and exit -template Create a template file. -compress N Compress file with compression level N. Valid compression levels are 0 for no compression to 9 for maximum compression. The option has no effect if the output file is a MINC 1 file. -chunk M Store file in a block-structured arrangement, using hypercubes of edge length M. The option has no effect if the output file is a MINC 1 file. -help Print summary of command-line options and exit. -version Print the program's version number and exit. AUTHOR
Bert Vincent - bert@bic.mni.mcgill.ca COPYRIGHTS
Copyright (C) 2003 by Robert Vincent and the Montreal Neurological Institute. $Date: 2004-05-20 21:52:08 $ MINCCONVERT(1)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

Anyone wanna write this?

Write a function named isPrime which accepts one integer parameter, say x. Have the function return TRUE if x is a prime. Otherwise, have it return FALSE. b) Write a program that keeps asking the user for an integer say k. As long as k is greater than 0, the program will call... (1 Reply)
Discussion started by: KyleBucket
1 Replies

2. UNIX for Dummies Questions & Answers

help me

Write a program that demonstrates use of signal handler using a) Wait b) Waitpid and explain the difference between the two based on your experience of computing Write code for the following. a) Write a program that will demonize a service (any service) and explain... (1 Reply)
Discussion started by: madhura
1 Replies

3. Shell Programming and Scripting

How do you write this program/script?

I need help with the following. 1) Write a program in any language that takes a single integer array parameter and returns the decimal average of the input values. 2) Write a program, in any language, that prints the integers from 1 to 10, along with a cumulative sum of the integers printed... (1 Reply)
Discussion started by: sqa4life
1 Replies

4. Shell Programming and Scripting

Write over data to new file

hi..i would ask about how to write over data to new file with BASH. so..assume my data looks like this : 11 12 13 14 15 ...and so on. It's always line by line. and that's for the first file. i want to write over those numbers into second file but by using space. so my second file should be... (5 Replies)
Discussion started by: syalala
5 Replies

5. Shell Programming and Scripting

Grep float/integers but skip some integers

Hi, I am working in bash in Mac OSX, I have following 'input.txt' file: <INFO> HypoTestTool: >>> Done running HypoTestInverter on the workspace combined <INFO> HypoTestTool: The computed upper limit is: 11 +/- 1.02651 <INFO> HypoTestTool: expected limit (median) 11 <INFO> HypoTestTool: ... (13 Replies)
Discussion started by: Asif Siddique
13 Replies

6. Shell Programming and Scripting

Help with output 32bit signed integer

How do I store a number as a 32-bit little-endian Signed Integer? (2 Replies)
Discussion started by: Stuperfied
2 Replies