/usr/include/teem/nrrdEnums.h is in libteem-dev 1.11.0~svn5226-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | /*
Teem: Tools to process and visualize scientific data and images
Copyright (C) 2011, 2010, 2009 University of Chicago
Copyright (C) 2008, 2007, 2006, 2005 Gordon Kindlmann
Copyright (C) 2004, 2003, 2002, 2001, 2000, 1999, 1998 University of Utah
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
(LGPL) as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The terms of redistributing and/or modifying this software also
include exceptions to the LGPL that facilitate static linking.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef NRRD_ENUMS_HAS_BEEN_INCLUDED
#define NRRD_ENUMS_HAS_BEEN_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
/*******
******** NONE of these enums should have values set explicitly in their
******** definition. The values should simply start at 0 (for Unknown)
******** and increase one integer per value. The _nrrdCheckEnums()
******** sanity check assumes this, and there is no reason to use
******** explicit values for any of the enums.
*******/
/*
******** nrrdIoState* enum
**
** the various things it makes sense to get and set in nrrdIoState struct
** via nrrdIoStateGet and nrrdIoStateSet
*/
enum {
nrrdIoStateUnknown,
nrrdIoStateDetachedHeader,
nrrdIoStateBareText,
nrrdIoStateCharsPerLine,
nrrdIoStateValsPerLine,
nrrdIoStateSkipData,
nrrdIoStateKeepNrrdDataFileOpen,
nrrdIoStateZlibLevel,
nrrdIoStateZlibStrategy,
nrrdIoStateBzip2BlockSize,
nrrdIoStateLast
};
/*
******** nrrdFormatType* enum
**
** the different file formats which nrrd supports
*/
enum {
nrrdFormatTypeUnknown,
nrrdFormatTypeNRRD, /* 1: basic nrrd format (associated with any of
the magics starting with "NRRD") */
nrrdFormatTypePNM, /* 2: PNM image */
nrrdFormatTypePNG, /* 3: PNG image */
nrrdFormatTypeVTK, /* 4: VTK Structured Points datasets (v1.0 and 2.0) */
nrrdFormatTypeText, /* 5: bare ASCII text for 2D arrays */
nrrdFormatTypeEPS, /* 6: Encapsulated PostScript (write-only) */
nrrdFormatTypeLast
};
#define NRRD_FORMAT_TYPE_MAX 6
/*
******** nrrdBoundary* enum
**
** when resampling, how to deal with the ends of a scanline
*/
enum {
nrrdBoundaryUnknown,
nrrdBoundaryPad, /* 1: fill with some user-specified value */
nrrdBoundaryBleed, /* 2: copy the last/first value out as needed */
nrrdBoundaryWrap, /* 3: wrap-around */
nrrdBoundaryWeight, /* 4: normalize the weighting on the existing samples;
ONLY sensible for a strictly positive kernel
which integrates to unity (as in blurring) */
nrrdBoundaryMirror, /* 5: mirror folding */
nrrdBoundaryLast
};
#define NRRD_BOUNDARY_MAX 5
/*
******** nrrdType* enum
**
** all the different types, identified by integer
**
** 18 July 03: After some consternation, GLK decided to set
** nrrdTypeUnknown and nrrdTypeDefault to the same thing, with the
** reasoning that the only times that nrrdTypeDefault is used is when
** controlling an *output* type (the type of "nout"), or rather,
** choosing not to control an output type. As output types must be
** known, there is no confusion between being unset/unknown (invalid)
** and being simply default.
*/
enum {
nrrdTypeUnknown=0, /* 0: signifies "type is unset/unknown" */
nrrdTypeDefault=0, /* 0: signifies "determine output type for me" */
nrrdTypeChar, /* 1: signed 1-byte integer */
nrrdTypeUChar, /* 2: unsigned 1-byte integer */
nrrdTypeShort, /* 3: signed 2-byte integer */
nrrdTypeUShort, /* 4: unsigned 2-byte integer */
nrrdTypeInt, /* 5: signed 4-byte integer */
nrrdTypeUInt, /* 6: unsigned 4-byte integer */
nrrdTypeLLong, /* 7: signed 8-byte integer */
nrrdTypeULLong, /* 8: unsigned 8-byte integer */
nrrdTypeFloat, /* 9: 4-byte floating point */
nrrdTypeDouble, /* 10: 8-byte floating point */
nrrdTypeBlock, /* 11: size user defined at run time; MUST BE LAST */
nrrdTypeLast
};
#define NRRD_TYPE_MAX 11
#define NRRD_TYPE_SIZE_MAX 8 /* max(sizeof()) over all scalar types */
#define NRRD_TYPE_BIGGEST double /* this should be a basic C type which
requires for storage the maximum size
of all the basic C types */
/*
******** nrrdEncodingType enum
**
** how data might be encoded into a bytestream
*/
enum {
nrrdEncodingTypeUnknown,
nrrdEncodingTypeRaw, /* 1: same as memory layout (modulo endianness) */
nrrdEncodingTypeAscii, /* 2: decimal values are spelled out in ascii */
nrrdEncodingTypeHex, /* 3: hexidecimal (two chars per byte) */
nrrdEncodingTypeGzip, /* 4: gzip'ed raw data */
nrrdEncodingTypeBzip2, /* 5: bzip2'ed raw data */
nrrdEncodingTypeLast
};
#define NRRD_ENCODING_TYPE_MAX 5
/*
******** nrrdZlibStrategy enum
**
** how gzipped data is compressed
*/
enum {
nrrdZlibStrategyUnknown,
nrrdZlibStrategyDefault, /* 1: default (Huffman + string match) */
nrrdZlibStrategyHuffman, /* 2: Huffman only */
nrrdZlibStrategyFiltered, /* 3: specialized for filtered data */
nrrdZlibStrategyLast
};
#define NRRD_ZLIB_STRATEGY_MAX 3
/*
******** nrrdCenter enum
**
** node-centered vs. cell-centered
*/
enum {
nrrdCenterUnknown, /* 0: no centering known for this axis */
nrrdCenterNode, /* 1: samples at corners of things
(how "voxels" are usually imagined)
|\______/|\______/|\______/|
X X X X */
nrrdCenterCell, /* 2: samples at middles of things
(characteristic of histogram bins)
\___|___/\___|___/\___|___/
X X X */
nrrdCenterLast
};
#define NRRD_CENTER_MAX 2
/*
******** nrrdKind enum
**
** For describing the information along one axis of an array. This is
** most important for clarifying the representation of non-scalar
** data, in order to distinguish between axes that are genuine image
** domain axes, and axes that exist just to store the multiple
** attributes per sample. One could argue that this information
** should be per-array and not per-axis, but you still have to
** indicate which one of the axes is the attribute axis. And, if you
** have, say, the gradient of RGB colors, you want the per-pixel 3x3
** array to have those two attribute axes tagged accordingly.
**
** More of these may be added in the future, such as when nrrd
** supports bricking. Since nrrd is never going to be in the business
** of manipulating the kind information or supporting kind-specific
** semantics, there can be proliferation of nrrdKinds, provided
** pointless redundancy is avoided.
**
** There is a relationship between some of these (nrrdKindSpace is a
** specific nrrdKindDomain), but currently there is no effort to
** record this meta-kind information.
**
** Keep in sync:
** enumsNrrd.c: nrrdKind airEnum
** axis.c: nrrdKindSize()
** axis.c: _nrrdKindAltered()
**
** NOTE: The nrrdKindSize() function returns the valid size for these.
**
*/
enum {
nrrdKindUnknown,
nrrdKindDomain, /* 1: any image domain */
nrrdKindSpace, /* 2: a spatial domain */
nrrdKindTime, /* 3: a temporal domain */
/* -------------------------- end domain kinds */
/* -------------------------- begin range kinds */
nrrdKindList, /* 4: any list of values, non-resample-able */
nrrdKindPoint, /* 5: coords of a point */
nrrdKindVector, /* 6: coeffs of (contravariant) vector */
nrrdKindCovariantVector, /* 7: coeffs of covariant vector (eg gradient) */
nrrdKindNormal, /* 8: coeffs of unit-length covariant vector */
/* -------------------------- end arbitrary size kinds */
/* -------------------------- begin size-specific kinds */
nrrdKindStub, /* 9: axis with one sample (a placeholder) */
nrrdKindScalar, /* 10: effectively, same as a stub */
nrrdKindComplex, /* 11: real and imaginary components */
nrrdKind2Vector, /* 12: 2 component vector */
nrrdKind3Color, /* 13: ANY 3-component color value */
nrrdKindRGBColor, /* 14: RGB, no colorimetry */
nrrdKindHSVColor, /* 15: HSV, no colorimetry */
nrrdKindXYZColor, /* 16: perceptual primary colors */
nrrdKind4Color, /* 17: ANY 4-component color value */
nrrdKindRGBAColor, /* 18: RGBA, no colorimetry */
nrrdKind3Vector, /* 19: 3-component vector */
nrrdKind3Gradient, /* 20: 3-component covariant vector */
nrrdKind3Normal, /* 21: 3-component covector, assumed normalized */
nrrdKind4Vector, /* 22: 4-component vector */
nrrdKindQuaternion, /* 23: (w,x,y,z), not necessarily normalized */
nrrdKind2DSymMatrix, /* 24: Mxx Mxy Myy */
nrrdKind2DMaskedSymMatrix, /* 25: mask Mxx Mxy Myy */
nrrdKind2DMatrix, /* 26: Mxx Mxy Myx Myy */
nrrdKind2DMaskedMatrix, /* 27: mask Mxx Mxy Myx Myy */
nrrdKind3DSymMatrix, /* 28: Mxx Mxy Mxz Myy Myz Mzz */
nrrdKind3DMaskedSymMatrix, /* 29: mask Mxx Mxy Mxz Myy Myz Mzz */
nrrdKind3DMatrix, /* 30: Mxx Mxy Mxz Myx Myy Myz Mzx Mzy Mzz */
nrrdKind3DMaskedMatrix, /* 31: mask Mxx Mxy Mxz Myx Myy Myz Mzx Mzy Mzz */
nrrdKindLast
};
#define NRRD_KIND_MAX 31
/*
******** nrrdAxisInfo enum
**
** the different pieces of per-axis information recorded in a nrrd
*/
enum {
nrrdAxisInfoUnknown,
nrrdAxisInfoSize, /* 1: number of samples along axis */
#define NRRD_AXIS_INFO_SIZE_BIT (1<< 1)
nrrdAxisInfoSpacing, /* 2: spacing between samples */
#define NRRD_AXIS_INFO_SPACING_BIT (1<< 2)
nrrdAxisInfoThickness, /* 3: thickness of sample region */
#define NRRD_AXIS_INFO_THICKNESS_BIT (1<< 3)
nrrdAxisInfoMin, /* 4: min pos. assoc. w/ 1st sample */
#define NRRD_AXIS_INFO_MIN_BIT (1<< 4)
nrrdAxisInfoMax, /* 5: max pos. assoc. w/ last sample */
#define NRRD_AXIS_INFO_MAX_BIT (1<< 5)
nrrdAxisInfoSpaceDirection, /* 6: inter-sample vector in "space" */
#define NRRD_AXIS_INFO_SPACEDIRECTION_BIT (1<< 6)
nrrdAxisInfoCenter, /* 7: cell vs. node */
#define NRRD_AXIS_INFO_CENTER_BIT (1<< 7)
nrrdAxisInfoKind, /* 8: from the nrrdKind* enum */
#define NRRD_AXIS_INFO_KIND_BIT (1<< 8)
nrrdAxisInfoLabel, /* 9: string describing the axis */
#define NRRD_AXIS_INFO_LABEL_BIT (1<< 9)
nrrdAxisInfoUnits, /* 10: from the nrrdUnit* enum */
#define NRRD_AXIS_INFO_UNITS_BIT (1<<10)
nrrdAxisInfoLast
};
#define NRRD_AXIS_INFO_MAX 10
#define NRRD_AXIS_INFO_ALL \
((1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<9)|(1<<10))
#define NRRD_AXIS_INFO_NONE 0
/*
******** nrrdBasicInfo enum
**
** the non-per-axis (or per-array) pieces of information that could
** meaningfully be copied between nrrds (hence the void *data is not
** included).
**
** "Basic" is named after the "basic field specifications" described
** in the NRRD file format definition
*/
enum {
nrrdBasicInfoUnknown,
nrrdBasicInfoData, /* 1 */
#define NRRD_BASIC_INFO_DATA_BIT (1<< 1)
nrrdBasicInfoType, /* 2 */
#define NRRD_BASIC_INFO_TYPE_BIT (1<< 2)
nrrdBasicInfoBlocksize, /* 3 */
#define NRRD_BASIC_INFO_BLOCKSIZE_BIT (1<< 3)
nrrdBasicInfoDimension, /* 4 */
#define NRRD_BASIC_INFO_DIMENSION_BIT (1<< 4)
nrrdBasicInfoContent, /* 5 */
#define NRRD_BASIC_INFO_CONTENT_BIT (1<< 5)
nrrdBasicInfoSampleUnits, /* 6 */
#define NRRD_BASIC_INFO_SAMPLEUNITS_BIT (1<< 6)
nrrdBasicInfoSpace, /* 7 */
#define NRRD_BASIC_INFO_SPACE_BIT (1<< 7)
nrrdBasicInfoSpaceDimension, /* 8 */
#define NRRD_BASIC_INFO_SPACEDIMENSION_BIT (1<< 8)
nrrdBasicInfoSpaceUnits, /* 9 */
#define NRRD_BASIC_INFO_SPACEUNITS_BIT (1<< 9)
nrrdBasicInfoSpaceOrigin, /* 10 */
#define NRRD_BASIC_INFO_SPACEORIGIN_BIT (1<<10)
nrrdBasicInfoMeasurementFrame, /* 11 */
#define NRRD_BASIC_INFO_MEASUREMENTFRAME_BIT (1<<11)
nrrdBasicInfoOldMin, /* 12 */
#define NRRD_BASIC_INFO_OLDMIN_BIT (1<<12)
nrrdBasicInfoOldMax, /* 13 */
#define NRRD_BASIC_INFO_OLDMAX_BIT (1<<13)
nrrdBasicInfoComments, /* 14 */
#define NRRD_BASIC_INFO_COMMENTS_BIT (1<<14)
nrrdBasicInfoKeyValuePairs, /* 15 */
#define NRRD_BASIC_INFO_KEYVALUEPAIRS_BIT (1<<15)
nrrdBasicInfoLast
};
#define NRRD_BASIC_INFO_MAX 15
#define NRRD_BASIC_INFO_ALL \
((1<<1)|(1<<2)|(1<<3)|(1<<4)|(1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<9)|(1<<10)\
|(1<<11)|(1<<12)|(1<<13)|(1<<14)|(1<<15))
#define NRRD_BASIC_INFO_SPACE (NRRD_BASIC_INFO_SPACE_BIT \
| NRRD_BASIC_INFO_SPACEDIMENSION_BIT \
| NRRD_BASIC_INFO_SPACEUNITS_BIT \
| NRRD_BASIC_INFO_SPACEORIGIN_BIT \
| NRRD_BASIC_INFO_MEASUREMENTFRAME_BIT)
#define NRRD_BASIC_INFO_NONE 0
/*
******** nrrdField enum
**
** the various fields we can parse in a NRRD header
**
** other things which must be kept in sync:
** arraysNrrd.c:
** _nrrdFieldValidInImage[]
** _nrrdFieldOnePerAxis[]
** _nrrdFieldValidInText[]
** _nrrdFieldRequired[]
** parseNrrd.c:
** _nrrdReadNrrdParseInfo[]
** enumsNrrd.c:
** nrrdField definition
** simple.c:
** _nrrdFieldCheck[]
** write.c:
** _nrrdFieldInteresting()
** _nrrdSprintFieldInfo()
** to some extent, in this file:
** nrrdAxisInfo and nrrdBasicInfo enums
** axis.c (for per-axis info):
** _nrrdAxisInfoCopy()
** methodsNrrd.c:
** lots of functions, but you knew that . . .
*/
enum {
nrrdField_unknown,
nrrdField_comment, /* 1 */
nrrdField_content, /* 2 */
nrrdField_number, /* 3 */
nrrdField_type, /* 4 */
nrrdField_block_size, /* 5 */
nrrdField_dimension, /* 6 */
nrrdField_space, /* 7 */
nrrdField_space_dimension, /* 8 */
nrrdField_sizes, /* 9 ----- begin per-axis ----- */
nrrdField_spacings, /* 10 */
nrrdField_thicknesses, /* 11 */
nrrdField_axis_mins, /* 12 */
nrrdField_axis_maxs, /* 13 */
nrrdField_space_directions, /* 14 */
nrrdField_centers, /* 15 */
nrrdField_kinds, /* 16 */
nrrdField_labels, /* 17 */
nrrdField_units, /* 18 ------ end per-axis ------ */
nrrdField_min, /* 19 */
nrrdField_max, /* 20 */
nrrdField_old_min, /* 21 */
nrrdField_old_max, /* 22 */
nrrdField_endian, /* 23 */
nrrdField_encoding, /* 24 */
nrrdField_line_skip, /* 25 */
nrrdField_byte_skip, /* 26 */
nrrdField_keyvalue, /* 27 */
nrrdField_sample_units, /* 28 */
nrrdField_space_units, /* 29 */
nrrdField_space_origin, /* 30 */
nrrdField_measurement_frame, /* 31 */
nrrdField_data_file, /* 32 */
nrrdField_last
};
#define NRRD_FIELD_MAX 32
/*
******** nrrdHasNonExist* enum
**
** oh look, I'm violating my rules outline above for how the enum values
** should be ordered. The reason for this is that its just too bizarro to
** have the logical value of both nrrdHasNonExistFalse and nrrdHasNonExistTrue
** to be (in C) true. For instance, nrrdHasNonExist() should be able to
** return a value from this enum which also functions in a C expressions as
** the expected boolean value. If for some reason (outide the action of
** nrrdHasNonExist(), nrrdHasNonExistUnknown is interpreted as true, that's
** probably harmlessly conservative. Time will tell.
*/
enum {
nrrdHasNonExistFalse, /* 0: no non-existent values were seen */
nrrdHasNonExistTrue, /* 1: some non-existent values were seen */
nrrdHasNonExistOnly, /* 2: NOTHING BUT non-existent values were seen */
nrrdHasNonExistUnknown, /* 3 */
nrrdHasNonExistLast
};
#define NRRD_HAS_NON_EXIST_MAX 3
/*
******** nrrdSpace* enum
**
** Identifies the space in which which the origin and direction
** vectors have their coordinates measured. When a direction is named
** here (like "Left" or "Anterior"), that implies a basis vector that
** points in that direction, along which that coordinate becomes *larger*
** (this is the opposite of MetaIO, for example).
**
** All of these spaces have a well-defined expected dimension, as
** determined by nrrdSpaceDimension(), and setting a nrrd to be in
** such a space, by nrrdSpaceSet(), will automatically set nrrd->spaceDim.
**
** The first six spaces here are PATIENT-ORIENTED spaces, which are
** properly speaking aligned with the patient, and not the scanner
** itself. But nrrdSpaceScannerXYZ and nrrdSpaceScannerXYZTime are
** DEVICE-ORIENTED spaces, irrespective of the patient, used in a
** previous version of the DICOM standard. When the two spaces are
** lined up with normal patient orientation in the scanner,
** nrrdSpaceScannerXYZ is the same as nrrdSpaceLeftPosteriorSuperior.
** To quote Part 3 (Information Object Definitions) of the DICOM spec
** (page 275): "If a patient lies parallel to the ground, face-up on
** the table, with his feet-to-head direction same as the
** front-to-back direction of the imaging equipment, the direction of
** the axes of this patient based coordinate system and the equipment
** based coordinate system in previous versions of this Standard will
** coincide."
**
** Keep in sync:
** enumsNrrd.c: nrrdSpace airEnum
** simple.c: int nrrdSpaceDimension(int space)
*/
enum {
nrrdSpaceUnknown,
nrrdSpaceRightAnteriorSuperior, /* 1: NIFTI-1 (right-handed) */
nrrdSpaceLeftAnteriorSuperior, /* 2: standard Analyze (left-handed) */
nrrdSpaceLeftPosteriorSuperior, /* 3: DICOM 3.0 (right-handed) */
nrrdSpaceRightAnteriorSuperiorTime, /* 4: */
nrrdSpaceLeftAnteriorSuperiorTime, /* 5: */
nrrdSpaceLeftPosteriorSuperiorTime, /* 6: */
nrrdSpaceScannerXYZ, /* 7: ACR/NEMA 2.0 (pre-DICOM 3.0) */
nrrdSpaceScannerXYZTime, /* 8: */
nrrdSpace3DRightHanded, /* 9: */
nrrdSpace3DLeftHanded, /* 10: */
nrrdSpace3DRightHandedTime, /* 11: */
nrrdSpace3DLeftHandedTime, /* 12: */
nrrdSpaceLast
};
#define NRRD_SPACE_MAX 12
/*
******** nrrdSpacingStatus* enum
**
** a way of describing how spacing information is known or not known for a
** given axis, as determined by nrrdSpacingCalculate
*/
enum {
nrrdSpacingStatusUnknown, /* 0: nobody knows,
or invalid axis choice */
nrrdSpacingStatusNone, /* 1: neither axis->spacing nor
axis->spaceDirection is set */
nrrdSpacingStatusScalarNoSpace, /* 2: axis->spacing set,
w/out space info */
nrrdSpacingStatusScalarWithSpace, /* 3: axis->spacing set, but there *is*
space info, which means the spacing
does *not* live in the surrounding
space */
nrrdSpacingStatusDirection, /* 4: axis->spaceDirection set, and
measured according to surrounding
space */
nrrdSpacingStatusLast
};
#define NRRD_SPACING_STATUS_MAX 4
/*
******** nrrdOriginStatus* enum
**
** how origin information was or was not computed by nrrdOriginCalculate
*/
enum {
nrrdOriginStatusUnknown, /* 0: nobody knows, or invalid parms */
nrrdOriginStatusDirection, /* 1: chosen axes have spaceDirections */
nrrdOriginStatusNoMin, /* 2: axis->min doesn't exist */
nrrdOriginStatusNoMaxOrSpacing, /* 3: axis->max or ->spacing doesn't exist */
nrrdOriginStatusOkay, /* 4: all is well */
nrrdOriginStatusLast
};
/* ---- BEGIN non-NrrdIO */
/*
******** nrrdMeasure enum
**
** ways to "measure" some portion of the array
** NEEDS TO BE IN SYNC WITH:
** - nrrdMeasure airEnum in enumsNrrd.c
** - nrrdMeasureLine function array in measure.c
*/
enum {
nrrdMeasureUnknown,
nrrdMeasureMin, /* 1: smallest value */
nrrdMeasureMax, /* 2: biggest value */
nrrdMeasureMean, /* 3: average of values */
nrrdMeasureMedian, /* 4: value at 50th percentile */
nrrdMeasureMode, /* 5: most common value */
nrrdMeasureProduct, /* 6: product of all values */
nrrdMeasureSum, /* 7: sum of all values */
nrrdMeasureL1, /* 8 */
nrrdMeasureL2, /* 9 */
nrrdMeasureNormalizedL2, /* 10 */
nrrdMeasureRootMeanSquare, /* 11 */
nrrdMeasureLinf, /* 12 */
nrrdMeasureVariance, /* 13 */
nrrdMeasureSD, /* 14: standard deviation */
nrrdMeasureSkew, /* 15: skew */
nrrdMeasureLineSlope, /* 16: slope of line of best fit */
nrrdMeasureLineIntercept, /* 17: y-intercept of line of best fit */
nrrdMeasureLineError, /* 18: error of line fitting */
/*
** the nrrduMeasureHisto* measures interpret the array as a
** histogram of some implied value distribution
*/
nrrdMeasureHistoMin, /* 19 */
nrrdMeasureHistoMax, /* 20 */
nrrdMeasureHistoMean, /* 21 */
nrrdMeasureHistoMedian, /* 22 */
nrrdMeasureHistoMode, /* 23 */
nrrdMeasureHistoProduct, /* 24 */
nrrdMeasureHistoSum, /* 25 */
nrrdMeasureHistoL2, /* 26 */
nrrdMeasureHistoVariance, /* 27 */
nrrdMeasureHistoSD, /* 28 */
nrrdMeasureLast
};
#define NRRD_MEASURE_MAX 28
#define NRRD_MEASURE_DESC \
"Possibilities include:\n " \
"\b\bo \"min\", \"max\", \"mean\", \"median\", \"mode\", \"variance\", " \
"\"skew\"\n (self-explanatory)\n " \
"\b\bo \"intc\", \"slope\", \"error\": " \
"intercept, slope, and error from line fitting\n " \
"\b\bo \"sd\": standard deviation\n " \
"\b\bo \"product\", \"sum\": product or sum of all values\n " \
"\b\bo \"L1\", \"L2\", \"NL2\", \"RMS\", \"Linf\": different norms\n " \
"\b\bo \"histo-min\", \"histo-max\", \"histo-mean\", " \
"\"histo-median\", \"histo-mode\", \"histo-product\", \"histo-l2\", " \
"\"histo-sum\", \"histo-variance\", \"histo-sd\": same measures, " \
"but for situations " \
"where we're given not the original values, but a histogram of them."
/*
******** nrrdBlind8BitRange
**
** whether or not to blindly say that the range of 8-bit data is
** [0,255] (uchar) or [SCHAR_MIN,SCHAR_MAX] (signed char)
*/
enum {
nrrdBlind8BitRangeUnknown, /* 0 */
nrrdBlind8BitRangeTrue, /* 1: blindly use the widest extrema (e.g.,
[0-255] for uchar, regardless of what's
really present in the data values */
nrrdBlind8BitRangeFalse, /* 2: use the exact value range in the data */
nrrdBlind8BitRangeState, /* 3: defer to nrrdStateBlind8BitMinMax */
nrrdBlind8BitRangeLast
};
#define NRRD_BLIND_8BIT_RANGE_MAX 3
/*
******** nrrdUnaryOp enum
**
** for unary operations on nrrds
*/
enum {
nrrdUnaryOpUnknown,
nrrdUnaryOpNegative, /* 1 */
nrrdUnaryOpReciprocal, /* 2 */
nrrdUnaryOpSin, /* 3 */
nrrdUnaryOpCos, /* 4 */
nrrdUnaryOpTan, /* 5 */
nrrdUnaryOpAsin, /* 6 */
nrrdUnaryOpAcos, /* 7 */
nrrdUnaryOpAtan, /* 8 */
nrrdUnaryOpExp, /* 9 */
nrrdUnaryOpLog, /* 10 */
nrrdUnaryOpLog2, /* 11 */
nrrdUnaryOpLog10, /* 12 */
nrrdUnaryOpLog1p, /* 13 */
nrrdUnaryOpSqrt, /* 14 */
nrrdUnaryOpCbrt, /* 15 */
nrrdUnaryOpErf, /* 16 */
nrrdUnaryOpNerf, /* 17 */
nrrdUnaryOpCeil, /* 18 */
nrrdUnaryOpFloor, /* 19 */
nrrdUnaryOpRoundUp, /* 20 */
nrrdUnaryOpRoundDown, /* 21 */
nrrdUnaryOpAbs, /* 22 */
nrrdUnaryOpSgn, /* 23 */
nrrdUnaryOpExists, /* 24 */
nrrdUnaryOpRand, /* 25 */
nrrdUnaryOpNormalRand, /* 26 */
nrrdUnaryOpIf, /* 27 */
nrrdUnaryOpZero, /* 28 */
nrrdUnaryOpOne, /* 29 */
nrrdUnaryOpLast
};
#define NRRD_UNARY_OP_MAX 29
/*
******** nrrdBinaryOp enum
**
** for binary operations on nrrds
*/
enum {
nrrdBinaryOpUnknown,
nrrdBinaryOpAdd, /* 1 */
nrrdBinaryOpSubtract, /* 2 */
nrrdBinaryOpMultiply, /* 3 */
nrrdBinaryOpDivide, /* 4 */
nrrdBinaryOpPow, /* 5 */
nrrdBinaryOpSgnPow, /* 6 */
nrrdBinaryOpMod, /* 7 */
nrrdBinaryOpFmod, /* 8 */
nrrdBinaryOpAtan2, /* 9 */
nrrdBinaryOpMin, /* 10 */
nrrdBinaryOpMax, /* 11 */
nrrdBinaryOpLT, /* 12 */
nrrdBinaryOpLTE, /* 13 */
nrrdBinaryOpGT, /* 14 */
nrrdBinaryOpGTE, /* 15 */
nrrdBinaryOpCompare, /* 16 */
nrrdBinaryOpEqual, /* 17 */
nrrdBinaryOpNotEqual, /* 18 */
nrrdBinaryOpExists, /* 19 */
nrrdBinaryOpIf, /* 20 */
nrrdBinaryOpNormalRandScaleAdd, /* 21 */
nrrdBinaryOpRicianRand, /* 22 */
nrrdBinaryOpLast
};
#define NRRD_BINARY_OP_MAX 22
/*
******** nrrdTernaryOp
**
** for ternary operations on nrrds
*/
enum {
nrrdTernaryOpUnknown,
nrrdTernaryOpAdd, /* 1 */
nrrdTernaryOpMultiply, /* 2 */
nrrdTernaryOpMin, /* 3 */
nrrdTernaryOpMinSmooth, /* 4 */
nrrdTernaryOpMax, /* 5 */
nrrdTernaryOpMaxSmooth, /* 6 */
nrrdTernaryOpLTSmooth, /* 7 */
nrrdTernaryOpGTSmooth, /* 8 */
nrrdTernaryOpClamp, /* 9 */
nrrdTernaryOpIfElse, /* 10 */
nrrdTernaryOpLerp, /* 11 */
nrrdTernaryOpExists, /* 12 */
nrrdTernaryOpInOpen, /* 13 */
nrrdTernaryOpInClosed, /* 14 */
nrrdTernaryOpGaussian, /* 15 */
nrrdTernaryOpRician, /* 16 */
nrrdTernaryOpLast
};
#define NRRD_TERNARY_OP_MAX 16
/*
******** nrrdFFTWPlanRigor
**
** Different levels of rigor in FFTW planning
*/
enum {
nrrdFFTWPlanRigorUnknown,
nrrdFFTWPlanRigorEstimate, /* 1 */
nrrdFFTWPlanRigorMeasure, /* 2 */
nrrdFFTWPlanRigorPatient, /* 3 */
nrrdFFTWPlanRigorExhaustive, /* 4 */
nrrdFFTWPlanRigorLast
};
#define NRRD_FFTW_PLAN_RIGOR_MAX 4
/*
******** nrrdResampleNonExistent
**
** different ways that nrrdResample should handle non-existent values
*/
enum {
nrrdResampleNonExistentUnknown,
nrrdResampleNonExistentNoop, /* 1 */
nrrdResampleNonExistentRenormalize, /* 2 */
nrrdResampleNonExistentWeight, /* 3 */
nrrdResampleNonExistentLast
};
#define NRRD_RESAMPLE_NON_EXISTENT_MAX 3
/* ---- END non-NrrdIO */
#ifdef __cplusplus
}
#endif
#endif /* NRRD_ENUMS_HAS_BEEN_INCLUDED */
|