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 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkAnalyzeImageIO.cxx,v $
Language: C++
Date: $Date: 2008-02-25 02:41:02 $
Version: $Revision: 1.86 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include <nifti1_io.h> // Needed to make sure that the overlapping
// Analyze/Nifti readers do not overlap
#include "itkAnalyzeImageIO.h"
#include "itkIOCommon.h"
#include "itkExceptionObject.h"
#include "itkByteSwapper.h"
#include "itkMetaDataObject.h"
#include "itkSpatialOrientationAdapter.h"
#include <itksys/SystemTools.hxx>
#include "itkMacro.h"
#include "itk_zlib.h"
#include <stdio.h>
#include <stdlib.h>
namespace itk
{
const char *const ANALYZE_ScanNumber = "ANALYZE_ScanNumber";
const char *const ANALYZE_O_MAX = "ANALYZE_O_MAX";
const char *const ANALYZE_O_MIN = "ANALYZE_O_MIN";
const char *const ANALYZE_S_MAX = "ANALYZE_S_MAX";
const char *const ANALYZE_S_MIN = "ANALYZE_S_MIN";
const char *const ANALYZE_CAL_MAX = "ANALYZE_CAL_MAX";
const char *const ANALYZE_CAL_MIN = "ANALYZE_CAL_MIN";
const char *const ANALYZE_GLMAX = "ANALYZE_GLMAX";
const char *const ANALYZE_GLMIN = "ANALYZE_GLMIN";
const char *const ANALYZE_AUX_FILE_NAME = "ANALYZE_AUX_FILE_NAME";
const char *const ANALYZE_CALIBRATIONUNITS = "ANALYZE_CALIBRATIONUNITS";
//An array of the Analyze v7.5 known DataTypes
const char DataTypes[12][10]= {
"UNKNOWN","BINARY","CHAR","SHORT", "INT","FLOAT",
"COMPLEX", "DOUBLE","RGB","ALL","USHORT","UINT"
};
//An array with the corresponding number of bits for each image type.
//NOTE: the following two line should be equivalent.
const short int DataTypeSizes[12]={0,1,8,16,32,32,64,64,24,0,16,32};
//An array with Data type key sizes
const short int DataTypeKey[12]={
ANALYZE_DT_UNKNOWN,
ANALYZE_DT_BINARY,
ANALYZE_DT_UNSIGNED_CHAR,
ANALYZE_DT_SIGNED_SHORT,
ANALYZE_DT_SIGNED_INT,
ANALYZE_DT_FLOAT,
ANALYZE_DT_COMPLEX,
ANALYZE_DT_DOUBLE,
ANALYZE_DT_RGB,
ANALYZE_DT_ALL,
SPMANALYZE_DT_UNSIGNED_SHORT,
SPMANALYZE_DT_UNSIGNED_INT
};
//GetExtension from uiig library.
static std::string
GetExtension( const std::string& filename )
{
// This assumes that the final '.' in a file name is the delimiter
// for the file's extension type
const std::string::size_type it = filename.find_last_of( "." );
// This determines the file's type by creating a new string
// who's value is the extension of the input filename
// eg. "myimage.gif" has an extension of "gif"
std::string fileExt( filename, it+1, filename.length() );
return( fileExt );
}
//GetRootName from uiig library.
static std::string
GetRootName( const std::string& filename )
{
const std::string fileExt = GetExtension(filename);
// Create a base filename
// i.e Image.hdr --> Image
if( fileExt.length() > 0 )
{
const std::string::size_type it = filename.find_last_of( fileExt );
std::string baseName( filename, 0, it-fileExt.length() );
return( baseName );
}
//Default to return same as input when the extension is nothing (Analyze)
return( filename );
}
static std::string
GetHeaderFileName( const std::string & filename )
{
std::string ImageFileName = GetRootName(filename);
std::string fileExt = GetExtension(filename);
// If file was named xxx.img.gz then remove both the gz and the img
// endings.
if(!fileExt.compare("gz"))
{
ImageFileName=GetRootName(GetRootName(filename));
}
ImageFileName += ".hdr";
return( ImageFileName );
}
//Returns the base image filename.
static std::string GetImageFileName( const std::string& filename )
{
// Why do we add ".img" here? Look in fileutils.h
std::string fileExt = GetExtension(filename);
std::string ImageFileName = GetRootName(filename);
if(!fileExt.compare("gz"))
{
//First strip both extensions off
ImageFileName=GetRootName(GetRootName(filename));
ImageFileName += ".img.gz";
}
else if(!fileExt.compare("img") || !fileExt.compare("hdr") )
{
ImageFileName += ".img";
}
else
{
return ("");
}
return( ImageFileName );
}
void
AnalyzeImageIO::SwapBytesIfNecessary( void* buffer,
unsigned long numberOfPixels )
{
if ( m_ByteOrder == LittleEndian )
{
switch(m_ComponentType)
{
case CHAR:
ByteSwapper<char>::SwapRangeFromSystemToLittleEndian((char*)buffer,
numberOfPixels );
break;
case UCHAR:
ByteSwapper<unsigned char>::SwapRangeFromSystemToLittleEndian
((unsigned char*)buffer, numberOfPixels );
break;
case SHORT:
ByteSwapper<short>::SwapRangeFromSystemToLittleEndian
((short*)buffer, numberOfPixels );
break;
case USHORT:
ByteSwapper<unsigned short>::SwapRangeFromSystemToLittleEndian
((unsigned short*)buffer, numberOfPixels );
break;
case INT:
ByteSwapper<int>::SwapRangeFromSystemToLittleEndian
((int*)buffer, numberOfPixels );
break;
case UINT:
ByteSwapper<unsigned int>::SwapRangeFromSystemToLittleEndian
((unsigned int*)buffer, numberOfPixels );
break;
case LONG:
ByteSwapper<long>::SwapRangeFromSystemToLittleEndian
((long*)buffer, numberOfPixels );
break;
case ULONG:
ByteSwapper<unsigned long>::SwapRangeFromSystemToLittleEndian
((unsigned long*)buffer, numberOfPixels );
break;
case FLOAT:
ByteSwapper<float>::SwapRangeFromSystemToLittleEndian((float*)buffer,
numberOfPixels );
break;
case DOUBLE:
ByteSwapper<double>::SwapRangeFromSystemToLittleEndian
((double*)buffer, numberOfPixels );
break;
default:
itkExceptionMacro(<< "Pixel Type Unknown");
}
}
else
{
switch(m_ComponentType)
{
case CHAR:
ByteSwapper<char>::SwapRangeFromSystemToBigEndian((char *)buffer,
numberOfPixels );
break;
case UCHAR:
ByteSwapper<unsigned char>::SwapRangeFromSystemToBigEndian
((unsigned char *)buffer, numberOfPixels );
break;
case SHORT:
ByteSwapper<short>::SwapRangeFromSystemToBigEndian
((short *)buffer, numberOfPixels );
break;
case USHORT:
ByteSwapper<unsigned short>::SwapRangeFromSystemToBigEndian
((unsigned short *)buffer, numberOfPixels );
break;
case INT:
ByteSwapper<int>::SwapRangeFromSystemToBigEndian
((int *)buffer, numberOfPixels );
break;
case UINT:
ByteSwapper<unsigned int>::SwapRangeFromSystemToBigEndian
((unsigned int *)buffer, numberOfPixels );
break;
case LONG:
ByteSwapper<long>::SwapRangeFromSystemToBigEndian
((long *)buffer, numberOfPixels );
break;
case ULONG:
ByteSwapper<unsigned long>::SwapRangeFromSystemToBigEndian
((unsigned long *)buffer, numberOfPixels );
break;
case FLOAT:
ByteSwapper<float>::SwapRangeFromSystemToBigEndian
((float *)buffer, numberOfPixels );
break;
case DOUBLE:
ByteSwapper<double>::SwapRangeFromSystemToBigEndian
((double *)buffer, numberOfPixels );
break;
default:
itkExceptionMacro(<< "Pixel Type Unknown");
}
}
}
ImageIOBase::ByteOrder
AnalyzeImageIO::CheckAnalyzeEndian(const struct dsr &temphdr)
{
ImageIOBase::ByteOrder returnvalue;
// Machine and header endianess is same
// checking hk.extents only is NOT a good idea. Many programs do not set
// hk.extents correctly. Doing an additional check on hk.sizeof_hdr
// increases chance of correct result. --Juerg Tschirrin Univeristy of Iowa
// All properly constructed analyze images should have the extents feild
// set. It is part of the file format standard. While most headers of
// analyze images are 348 bytes long, The Analyze file format allows the
// header to have other lengths.
// This code will fail in the unlikely event that the extents feild is
// not set (invalid anlyze file anyway) and the header is not the normal
// size. Other peices of code have used a heuristic on the image
// dimensions. If the Image dimensions is greater
// than 16000 then the image is almost certainly byte-swapped-- Hans
const ImageIOBase::ByteOrder systemOrder =
(ByteSwapper<int>::SystemIsBigEndian()) ? BigEndian : LittleEndian;
if((temphdr.hk.extents == 16384) || (temphdr.hk.sizeof_hdr == 348))
{
returnvalue = systemOrder;
}
else
{
// File does not match machine
returnvalue = (systemOrder == BigEndian ) ? LittleEndian : BigEndian;
}
return returnvalue;
}
void
AnalyzeImageIO::SwapHeaderBytesIfNecessary( struct dsr * const imageheader )
{
if ( m_ByteOrder == LittleEndian )
{
// NOTE: If machine order is little endian, and the data needs to be
// swapped, the SwapFromBigEndianToSystem is equivalent to
// SwapFromSystemToBigEndian.
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hk.sizeof_hdr);
ByteSwapper<int >::SwapFromSystemToLittleEndian(
&imageheader->hk.extents );
ByteSwapper<short int>::SwapFromSystemToLittleEndian(
&imageheader->hk.session_error );
ByteSwapper<short int>::SwapRangeFromSystemToLittleEndian(
&imageheader->dime.dim[0], 8 );
ByteSwapper<short int>::SwapFromSystemToLittleEndian(
&imageheader->dime.unused1 );
ByteSwapper<short int>::SwapFromSystemToLittleEndian(
&imageheader->dime.datatype );
ByteSwapper<short int>::SwapFromSystemToLittleEndian(
&imageheader->dime.bitpix );
ByteSwapper<short int>::SwapFromSystemToLittleEndian(
&imageheader->dime.dim_un0 );
ByteSwapper<float>::SwapRangeFromSystemToLittleEndian(
&imageheader->dime.pixdim[0],8 );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.vox_offset );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.roi_scale );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.funused1 );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.funused2 );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.cal_max );
ByteSwapper<float>::SwapFromSystemToLittleEndian(
&imageheader->dime.cal_min );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->dime.compressed );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->dime.verified );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->dime.glmax );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->dime.glmin );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.views );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.vols_added );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.start_field );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.field_skip );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.omax );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.omin );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.smax );
ByteSwapper<int>::SwapFromSystemToLittleEndian(
&imageheader->hist.smin );
}
else if ( m_ByteOrder == BigEndian )
{
//NOTE: If machine order is little endian, and the data needs to be
// swapped, the SwapFromBigEndianToSystem is equivalent to
// SwapFromSystemToLittleEndian.
ByteSwapper<int >::SwapFromSystemToBigEndian(
&imageheader->hk.sizeof_hdr );
ByteSwapper<int >::SwapFromSystemToBigEndian(
&imageheader->hk.extents );
ByteSwapper<short int>::SwapFromSystemToBigEndian(
&imageheader->hk.session_error );
ByteSwapper<short int>::SwapRangeFromSystemToBigEndian(
&imageheader->dime.dim[0], 8 );
ByteSwapper<short int>::SwapFromSystemToBigEndian(
&imageheader->dime.unused1 );
ByteSwapper<short int>::SwapFromSystemToBigEndian(
&imageheader->dime.datatype );
ByteSwapper<short int>::SwapFromSystemToBigEndian(
&imageheader->dime.bitpix );
ByteSwapper<short int>::SwapFromSystemToBigEndian(
&imageheader->dime.dim_un0 );
ByteSwapper<float>::SwapRangeFromSystemToBigEndian(
&imageheader->dime.pixdim[0],8 );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.vox_offset );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.roi_scale );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.funused1 );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.funused2 );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.cal_max );
ByteSwapper<float>::SwapFromSystemToBigEndian(
&imageheader->dime.cal_min );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->dime.compressed );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->dime.verified );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->dime.glmax );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->dime.glmin );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.views );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.vols_added );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.start_field );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.field_skip );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.omax );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.omin );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.smax );
ByteSwapper<int>::SwapFromSystemToBigEndian(
&imageheader->hist.smin );
}
else
{
itkExceptionMacro(<< "Machine Endian Type Unknown");
}
}
AnalyzeImageIO::AnalyzeImageIO()
{
// By default, only have 3 dimensions
this->SetNumberOfDimensions(3);
m_PixelType = SCALAR;
m_ComponentType = UCHAR;
// Set m_MachineByteOrder to the ByteOrder of the machine
// Start out with file byte order == system byte order
// this will be changed if we're reading a file to whatever
// the file actually contains.
if (ByteSwapper<int>::SystemIsBigEndian())
{
m_MachineByteOrder = m_ByteOrder = BigEndian;
}
else
{
m_MachineByteOrder = m_ByteOrder = LittleEndian;
}
// Set all values to a default value
// Must check again -- memset!!!!
// Analyze stuff
// memset sets the first n bytes in memory area s to the value of c
// (cothis->m_Hdr.dime.dim[4]erted to an unsigned char). It returns s.
// void *memset (void *s, int c, size_t n);
memset(&(this->m_Hdr),0, sizeof(struct dsr));
// strcpy(this->m_Hdr.hk.data_type,DataTypes[DT_INDEX_UNKNOWN]);
/* Acceptable this->m_Hdr.hk.data_type values are */
/* "UNKNOWN","BINARY","CHAR","SHORT","INT","FLOAT","COMPLEX","DOUBLE","RGB" */
this->m_Hdr.hk.sizeof_hdr = static_cast< int >( sizeof(struct dsr) );
this->m_Hdr.hk.db_name[0]='\0';
this->m_Hdr.hk.extents=16384;
this->m_Hdr.hk.session_error=0;
this->m_Hdr.hk.regular='r';
this->m_Hdr.hk.hkey_un0='\0';
/* HeaderObj_dimension information*/
this->m_Hdr.dime.dim[0]=4; //Usually 4 x,y,z,time
this->m_Hdr.dime.dim[1]=1; //size_x;//number of columns
this->m_Hdr.dime.dim[2]=1; //size_y;//number of rows
this->m_Hdr.dime.dim[3]=1; //size_z;//number of slices
this->m_Hdr.dime.dim[4]=1; //size_t;//number of volumes
this->m_Hdr.dime.dim[5]=1;
this->m_Hdr.dime.dim[6]=1;
this->m_Hdr.dime.dim[7]=1;
/* labels voxel spatial unit */
this->m_Hdr.dime.vox_units[0]='\0';
/* labels voxel calibration unit */
this->m_Hdr.dime.cal_units[0]='\0';
this->m_Hdr.dime.unused1=0;
// Acceptable data values are DT_NONE, DT_UNKOWN, DT_BINARY,
// DT_UNSIGNED_CHAR
// DT_SIGNED_SHORT, DT_SIGNED_INT, DT_FLOAT, DT_COMPLEX, DT_DOUBLE,
// DT_RGB, DT_ALL
//this->m_Hdr.dime.datatype=DataTypeKey[DT_INDEX_UNKNOWN];
// this->m_Hdr.dime.bitpix=DataTypeSizes[DT_INDEX_UNKNOWN];/*bits per pixel*/
this->m_Hdr.dime.dim_un0=0;
// Set the voxel dimension fields:
// A value of 0.0 for these fields implies that the value is unknown.
// Change these values to what is appropriate for your data
// or pass additional commathis->m_Hdr.dime.dim[0] line arguments
this->m_Hdr.dime.pixdim[0]=0.0f;//Unused field
this->m_Hdr.dime.pixdim[1]=1.0f;//x_dimension
this->m_Hdr.dime.pixdim[2]=1.0f;//y_dimension
this->m_Hdr.dime.pixdim[3]=1.0f;//z_dimension
this->m_Hdr.dime.pixdim[4]=1.0f;//t_dimension
this->m_Hdr.dime.pixdim[5]=1.0f;
this->m_Hdr.dime.pixdim[6]=1.0f;
this->m_Hdr.dime.pixdim[7]=1.0f;
// Assume zero offset in .img file, byte at which pixel data starts in
// the HeaderObj file
// byte offset in the HeaderObj file which voxels start
this->m_Hdr.dime.vox_offset=0.0f;
this->m_Hdr.dime.roi_scale=0.0f;
this->m_Hdr.dime.funused1=0.0f;
this->m_Hdr.dime.funused2=0.0f;
this->m_Hdr.dime.cal_max=0.0f; // specify range of calibration values
this->m_Hdr.dime.cal_min=0.0f; // specify range of calibration values
this->m_Hdr.dime.compressed=0; // specify that the data file with extension
// .img is not compressed
this->m_Hdr.dime.verified=0;
this->m_Hdr.dime.glmax=0; // max value for all of the data set
this->m_Hdr.dime.glmin=0; // min value for all of the data set
/*data_history*/
this->m_Hdr.hist.descrip[0]='\0';
this->m_Hdr.hist.aux_file[0]='\0';
/*Acceptable values are*/
/*0-transverse unflipped*/
/*1-coronal unflipped*/
/*2-sagittal unfipped*/
/*3-transverse flipped*/
/*4-coronal flipped*/
/*5-sagittal flipped*/
// Default orientation is ITK_ANALYZE_TRANSVERSE
this->m_Hdr.hist.orient =
itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RPI_TRANSVERSE;
this->m_Hdr.hist.originator[0]='\0';
this->m_Hdr.hist.generated[0]='\0';
this->m_Hdr.hist.scannum[0]='\0';
this->m_Hdr.hist.patient_id[0]='\0';
this->m_Hdr.hist.exp_date[0]='\0';
this->m_Hdr.hist.exp_time[0]='\0';
this->m_Hdr.hist.hist_un0[0]='\0';
this->m_Hdr.hist.views=0;
this->m_Hdr.hist.vols_added=0;
this->m_Hdr.hist.start_field=0;
this->m_Hdr.hist.field_skip=0;
this->m_Hdr.hist.omax=0;
this->m_Hdr.hist.omin=0;
this->m_Hdr.hist.smax=0;
this->m_Hdr.hist.smin=0;
}
AnalyzeImageIO::~AnalyzeImageIO()
{
//Purposefully left blank
}
void AnalyzeImageIO::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
}
bool AnalyzeImageIO::CanWriteFile(const char * FileNameToWrite)
{
std::string filename(FileNameToWrite);
// Data file name given?
std::string::size_type imgPos = filename.rfind(".img");
if ((imgPos != std::string::npos)
&& (imgPos == filename.length() - 4))
{
return true;
}
// Header file given?
std::string::size_type hdrPos = filename.rfind(".hdr");
if ((hdrPos != std::string::npos)
&& (hdrPos == filename.length() - 4))
{
return true;
}
// Compressed image given?
std::string::size_type imggzPos = filename.rfind(".img.gz");
if ((imggzPos != std::string::npos)
&& (imggzPos == filename.length() - 7))
{
return true;
}
return false;
}
//Set Data Type Values and min/max values
//////////////////////////////////////////////////////////////////////////
// Programmer: Hans J. Johnson
// Date: 10/29/98
// Function: DefineHeaderObjDataType
// Algorithm: Set DataType Values appropriatly
// Func. Ret.:
// Output:
// Input: DataTypeIndex - Is one of the following
// DT_INDEX_UNSIGNED_CHAR
// DT_INDEX_SIGNED_SHORT DT_INDEX_SIGNED_INT
// DT_INDEX_FLOAT DT_INDEX_DOUBLE
// DT_INDEX_COMPLEX DT_INDEX_RGB
// DT_INDEX_BINARY DT_INDEX_UNKNOWN
//////////////////////////////////////////////////////////////////////////
void AnalyzeImageIO::DefineHeaderObjectDataType()
{
enum DataTypeIndex eNewType;
switch(m_ComponentType)
{
case CHAR:
case UCHAR:
eNewType=ANALYZE_DT_INDEX_UNSIGNED_CHAR;
break;
case SHORT:
eNewType=ANALYZE_DT_INDEX_SIGNED_SHORT;
break;
case USHORT:
eNewType = SPMANALYZE_DT_INDEX_UNSIGNED_SHORT;
break;
case INT:
eNewType=ANALYZE_DT_INDEX_SIGNED_INT;
break;
case UINT:
eNewType=SPMANALYZE_DT_INDEX_UNSIGNED_INT;
break;
case FLOAT:
eNewType=ANALYZE_DT_INDEX_FLOAT;
break;
case DOUBLE:
eNewType=ANALYZE_DT_INDEX_DOUBLE;
break;
//case DATA_COMPLEX_FLOAT:
// eNewType=ANALYZE_DT_INDEX_COMPLEX;
// break;
//case DATA_RGBTRIPLE:
// eNewType=ANALYZE_DT_INDEX_RGB;
// break;
//case DATA_BINARY:
// eNewType=ANALYZE_DT_INDEX_BINARY;
// break;
// case
// DATA_UNKNOWN:
// eNewType=ANALYZE_DT_INDEX_UNKNOWN;
// break;
default:
eNewType=ANALYZE_DT_INDEX_UNKNOWN;
itkExceptionMacro(<< "Pixel Type Unknown");
}
m_Hdr.dime.datatype=DataTypeKey[eNewType];
m_Hdr.dime.bitpix=DataTypeSizes[eNewType];
strcpy(m_Hdr.hk.data_type,DataTypes[eNewType]);
switch(m_Hdr.dime.datatype)
{
case ANALYZE_DT_INDEX_BINARY:
m_Hdr.dime.glmax=1; /*max value for all of the data set*/
m_Hdr.dime.glmin=0; /*min value for all of the data set*/
break;
case ANALYZE_DT_INDEX_UNSIGNED_CHAR:
m_Hdr.dime.glmax=255;/*max value for all of the data set*/
m_Hdr.dime.glmin=0; /*min value for all of the data set*/
break;
case ANALYZE_DT_INDEX_SIGNED_SHORT:
//m_Hdr.dime.glmax=0;/*max value for all of the data set*/
//m_Hdr.dime.glmin=0;/*min value for all of the data set*/
break;
case ANALYZE_DT_INDEX_FLOAT:
//m_Hdr.dime.glmax=0;/*max value for all of the data set*/
//m_Hdr.dime.glmin=0;/*min value for all of the data set*/
break;
case ANALYZE_DT_INDEX_DOUBLE:
//m_Hdr.dime.glmax=0;/*max value for all of the data set*/
//m_Hdr.dime.glmin=0;/*min value for all of the data set*/
break;
case ANALYZE_DT_INDEX_RGB:
m_Hdr.dime.glmax=255;/*max value for all of the data set*/
m_Hdr.dime.glmin=0;/*min value for all of the data set*/
break;
default:
m_Hdr.dime.glmax=0; /*max value for all of the
data set*/
m_Hdr.dime.glmin=0; /*min value for all of
the data set*/
break;
}
}
void AnalyzeImageIO::Read(void* buffer)
{
unsigned int dim;
const unsigned int dimensions = this->GetNumberOfDimensions();
unsigned int numberOfPixels = 1;
for(dim=0; dim< dimensions; dim++ )
{
numberOfPixels *= m_Dimensions[ dim ];
}
char * const p = static_cast<char *>(buffer);
//4 cases to handle
//1: given .hdr and image is .img
//2: given .img
//3: given .img.gz
//4: given .hdr and image is .img.gz
// Special processing needed for this case onl
// NOT NEEDED const std::string fileExt = GetExtension(m_FileName);
/* Returns proper name for cases 1,2,3 */
std::string ImageFileName = GetImageFileName( m_FileName );
//NOTE: gzFile operations act just like FILE * operations when the files
// are not in gzip fromat.
// This greatly simplifies the following code, and gzFile types are used
// everywhere.
// In addition, it has the added benifit of reading gzip compressed image
// files that do not have a .gz ending.
gzFile file_p = ::gzopen( ImageFileName.c_str(), "rb" );
if( file_p == NULL )
{
/* Do a separate check to take care of case #4 */
ImageFileName += ".gz";
file_p = ::gzopen( ImageFileName.c_str(), "rb" );
if( file_p == NULL )
{
ExceptionObject exception(__FILE__, __LINE__);
std::string message =
"Analyze Data File can not be read:"
" The following files were attempted:\n ";
message += GetImageFileName( m_FileName );
message += '\n';
message += ImageFileName;
message += '\n';
exception.SetDescription(message.c_str());
exception.SetLocation(ITK_LOCATION);
throw exception;
}
}
// Seek through the file to the correct position, This is only necessary
// when readin in sub-volumes
// const long int total_offset = static_cast<long int>(tempX * tempY *
// start_slice * m_dataSize)
// + static_cast<long int>(tempX * tempY * total_z * start_time *
// m_dataSize);
// ::gzseek( file_p, total_offset, SEEK_SET );
// read image in
::gzread( file_p, p, static_cast< unsigned >( this->GetImageSizeInBytes() ) );
gzclose( file_p );
SwapBytesIfNecessary( buffer, numberOfPixels );
}
// This method will only test if the header looks like an
// Analyze Header. Some code is redundant with ReadImageInformation
// a StateMachine could provide a better implementation
bool AnalyzeImageIO::CanReadFile( const char* FileNameToRead )
{
std::string filename(FileNameToRead);
// we check that the correction extension is given by the user
std::string filenameext = GetExtension(filename);
if (filenameext == std::string("gz"))
{
const std::string::size_type it = filename.rfind( ".img.gz" );
if (it != (filename.length() - 7))
{
return false;
}
}
else if(filenameext != std::string("hdr")
&& filenameext != std::string("img.gz")
&& filenameext != std::string("img")
)
{
return false;
}
const std::string HeaderFileName = GetHeaderFileName(filename);
//
// only try to read HDR files
std::string ext = GetExtension(HeaderFileName);
if(ext == std::string("gz"))
{
ext = GetExtension(GetRootName(HeaderFileName));
}
if(ext != std::string("hdr") && ext != std::string("img"))
{
return false;
}
std::ifstream local_InputStream;
local_InputStream.open( HeaderFileName.c_str(),
std::ios::in | std::ios::binary );
if( local_InputStream.fail() )
{
return false;
}
if( ! this->ReadBufferAsBinary( local_InputStream,
(void *)&(this->m_Hdr),
sizeof(struct dsr) ) )
{
local_InputStream.close();
return false;
}
local_InputStream.close();
// if the machine and file endianess are different
// perform the byte swapping on it
this->m_ByteOrder = this->CheckAnalyzeEndian(this->m_Hdr);
this->SwapHeaderBytesIfNecessary( &(this->m_Hdr) );
#ifdef OMIT_THIS_CODE
//It is OK for this flag to be set because the zlib will
//support the Unix compress files
if(this->m_Hdr.dime.compressed==1)
{
return false;
// ExceptionObject exception(__FILE__, __LINE__);
// exception.SetDescription("Unix compress file is not supported.");
// throw exception;
}
#endif
//The final check is to make sure that it is not a nifti
// version of the analyze file.
//Eventually the entire itkAnalyzeImageIO class will be
//subsumed by the nifti reader.
const bool NotNiftiTaggedFile=(is_nifti_file(FileNameToRead) == 0);
return NotNiftiTaggedFile;
}
void AnalyzeImageIO::ReadImageInformation()
{
unsigned int dim;
const std::string HeaderFileName = GetHeaderFileName( m_FileName );
std::ifstream local_InputStream;
local_InputStream.open(HeaderFileName.c_str(),
std::ios::in | std::ios::binary);
if( local_InputStream.fail())
{
itkExceptionMacro(<< "File cannot be read");
}
if( ! this->ReadBufferAsBinary( local_InputStream,
(void *)&(this->m_Hdr),
sizeof(struct dsr) ) )
{
itkExceptionMacro(<< "Unexpected end of file");
}
local_InputStream.close();
// if the machine and file endianess are different
// perform the byte swapping on it
this->m_ByteOrder=this->CheckAnalyzeEndian(this->m_Hdr);
if( this->m_MachineByteOrder != this->m_ByteOrder )
{
this->SwapHeaderBytesIfNecessary( &(this->m_Hdr) );
}
// Check if any dimensions are 1. If they are, reduce dimensionality
// This shouldn't be necessary, but Analyse75 seems to require the first
// field to be 4. So when writing say a 50 x 27 2D image,
// m_Hdr.dime.dim[0] = 4;
// m_Hdr.dime.dim[1] = 50;
// m_Hdr.dime.dim[2] = 27;
// m_Hdr.dime.dim[3] = 1;
// m_Hdr.dime.dim[4] = 1;
unsigned int numberOfDimensions = this->m_Hdr.dime.dim[0];
if (numberOfDimensions == 0)
{
itkExceptionMacro("AnalyzeImageIO cannot process file: "
<< this->GetFileName()
<< ". Number of dimensions is 0." <<std::endl
<< "hdr.dime[0] = " << m_Hdr.dime.dim[0] << std::endl
<< "hdr.dime[1] = " << m_Hdr.dime.dim[1] << std::endl
<< "hdr.dime[2] = " << m_Hdr.dime.dim[2] << std::endl
<< "hdr.dime[3] = " << m_Hdr.dime.dim[3] << std::endl
<< "hdr.dime[4] = " << m_Hdr.dime.dim[4] << std::endl);
return;
}
while(this->m_Hdr.dime.dim[numberOfDimensions] <=1 )
{
--numberOfDimensions;
}
this->SetNumberOfDimensions(numberOfDimensions);
switch( this->m_Hdr.dime.datatype )
{
case ANALYZE_DT_BINARY:
m_ComponentType = CHAR;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_UNSIGNED_CHAR:
m_ComponentType = UCHAR;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_SIGNED_SHORT:
m_ComponentType = SHORT;
m_PixelType = SCALAR;
break;
case SPMANALYZE_DT_UNSIGNED_SHORT:
m_ComponentType = USHORT;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_SIGNED_INT:
m_ComponentType = INT;
m_PixelType = SCALAR;
break;
case SPMANALYZE_DT_UNSIGNED_INT:
m_ComponentType = UINT;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_FLOAT:
m_ComponentType = FLOAT;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_DOUBLE:
m_ComponentType = DOUBLE;
m_PixelType = SCALAR;
break;
case ANALYZE_DT_RGB:
// DEBUG -- Assuming this is a triple, not quad
//image.setDataType( uiig::DATA_RGBQUAD );
break;
default:
break;
}
//
// set up the dimension stuff
for(dim = 0; dim < this->GetNumberOfDimensions(); dim++)
{
this->SetDimensions(dim,this->m_Hdr.dime.dim[dim+1]);
this->SetSpacing(dim,this->m_Hdr.dime.pixdim[dim+1]);
}
//
// figure out re-orientation required if not in Coronal
this->ComputeStrides();
//Get Dictionary Information
//Insert Orientation.
{
// char temp[348];
//Important hk fields.
itk::MetaDataDictionary &thisDic=this->GetMetaDataDictionary();
std::string classname(this->GetNameOfClass());
itk::EncapsulateMetaData<std::string>(thisDic,ITK_InputFilterName, classname);
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_ImageFileBaseName,std::string(this->m_Hdr.hk.db_name,18));
//Important dime fields
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_VoxelUnits,std::string(this->m_Hdr.dime.vox_units,4));
itk::EncapsulateMetaData<std::string>
(thisDic,ANALYZE_CALIBRATIONUNITS,
std::string(this->m_Hdr.dime.cal_units,8));
itk::EncapsulateMetaData<short int>
(thisDic,ITK_OnDiskBitPerPixel,this->m_Hdr.dime.bitpix);
itk::EncapsulateMetaData<float>
(thisDic,SPM_ROI_SCALE,this->m_Hdr.dime.roi_scale);
itk::EncapsulateMetaData<float>(thisDic,ANALYZE_CAL_MAX,
this->m_Hdr.dime.cal_max);
itk::EncapsulateMetaData<float>(thisDic,ANALYZE_CAL_MIN,
this->m_Hdr.dime.cal_min);
itk::EncapsulateMetaData<int>(thisDic,ANALYZE_GLMAX,this->m_Hdr.dime.glmax);
itk::EncapsulateMetaData<int>(thisDic,ANALYZE_GLMIN,this->m_Hdr.dime.glmin);
for (dim=this->GetNumberOfDimensions(); dim>0; dim--)
{
if (m_Hdr.dime.dim[dim] != 1)
{
break;
}
}
itk::EncapsulateMetaData<int>(thisDic,ITK_NumberOfDimensions,dim);
switch( this->m_Hdr.dime.datatype)
{
case ANALYZE_DT_BINARY:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,std::string(typeid(char).name()));
break;
case ANALYZE_DT_UNSIGNED_CHAR:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned char).name()));
break;
case ANALYZE_DT_SIGNED_SHORT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(short).name()));
break;
case SPMANALYZE_DT_UNSIGNED_SHORT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned short).name()));
break;
case ANALYZE_DT_SIGNED_INT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(long).name()));
break;
case SPMANALYZE_DT_UNSIGNED_INT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned long).name()));
break;
case ANALYZE_DT_FLOAT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(float).name()));
break;
case ANALYZE_DT_DOUBLE:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(double).name()));
break;
case ANALYZE_DT_RGB:
// DEBUG -- Assuming this is a triple, not quad
//image.setDataType( uiig::DATA_RGBQUAD );
break;
default:
break;
}
//Important hist fields
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_FileNotes,
std::string(this->m_Hdr.hist.descrip,80));
itk::EncapsulateMetaData<std::string>
(thisDic,ANALYZE_AUX_FILE_NAME,
std::string(this->m_Hdr.hist.aux_file,24));
{
itk::AnalyzeImageIO::ValidAnalyzeOrientationFlags temporient
= static_cast<itk::AnalyzeImageIO::ValidAnalyzeOrientationFlags>
(this->m_Hdr.hist.orient);
itk::SpatialOrientation::ValidCoordinateOrientationFlags coord_orient;
switch (temporient)
{
case itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RPI_TRANSVERSE:
coord_orient = itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RPI;
break;
case itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_PIR_SAGITTAL:
coord_orient = itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_PIR;
break;
case itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RIP_CORONAL:
coord_orient = itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RIP;
break;
default:
coord_orient = itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RIP;
itkWarningMacro( "Unknown orientation in file " << m_FileName );
}
// An error was encountered in code that depends upon the
// valid coord_orientation.
typedef SpatialOrientationAdapter OrientAdapterType;
SpatialOrientationAdapter::DirectionType dir =
OrientAdapterType().ToDirectionCosines(coord_orient);
unsigned dims = this->GetNumberOfDimensions();
std::vector<double> dirx(dims,0),
diry(dims,0),
dirz(dims,0);
dirx[0] = dir[0][0];
dirx[1] = dir[1][0];
dirx[2] = dir[2][0];
diry[0] = dir[0][1];
diry[1] = dir[1][1];
diry[2] = dir[2][1];
dirz[0] = dir[0][2];
dirz[1] = dir[1][2];
dirz[2] = dir[2][2];
for(unsigned i = 3; i < dims; i++)
{
dirx[i] = diry[i] = dirz[i] = 0;
}
this->SetDirection(0,dirx);
this->SetDirection(1,diry);
if(numberOfDimensions > 2)
{
this->SetDirection(2,dirz);
}
#if defined(ITKIO_DEPRECATED_METADATA_ORIENTATION)
itk::EncapsulateMetaData
<itk::SpatialOrientation::ValidCoordinateOrientationFlags>
(thisDic,ITK_CoordinateOrientation, coord_orient);
#endif
}
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_FileOriginator,
std::string(this->m_Hdr.hist.originator,10));
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OriginationDate,
std::string(this->m_Hdr.hist.generated,10));
itk::EncapsulateMetaData<std::string>
(thisDic,ANALYZE_ScanNumber,
std::string(this->m_Hdr.hist.scannum,10));
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_PatientID,
std::string(this->m_Hdr.hist.patient_id,10));
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_ExperimentDate,
std::string(this->m_Hdr.hist.exp_date,10));
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_ExperimentTime,
std::string(this->m_Hdr.hist.exp_date,10));
itk::EncapsulateMetaData<int>
(thisDic,ANALYZE_O_MAX,
this->m_Hdr.hist.omax);
itk::EncapsulateMetaData<int>
(thisDic,ANALYZE_O_MIN,
this->m_Hdr.hist.omin);
itk::EncapsulateMetaData<int>
(thisDic,ANALYZE_S_MAX,
this->m_Hdr.hist.smax);
itk::EncapsulateMetaData<int>
(thisDic,ANALYZE_S_MIN,
this->m_Hdr.hist.smin);
}
return;
}
/**
*
*/
void
AnalyzeImageIO
::WriteImageInformation(void)
{
unsigned int dim;
if(this->GetNumberOfComponents() > 1)
{
itkExceptionMacro(<< "More than one component per pixel not supported");
}
const std::string HeaderFileName = GetHeaderFileName( m_FileName );
std::ofstream local_OutputStream;
local_OutputStream.open( HeaderFileName.c_str(),
std::ios::out | std::ios::binary );
if( local_OutputStream.fail() )
{
itkExceptionMacro(<< "File cannot be written");
}
{
std::string temp;
//Important hk fields.
itk::MetaDataDictionary &thisDic=this->GetMetaDataDictionary();
switch( this->m_Hdr.dime.datatype)
{
case ANALYZE_DT_BINARY:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(char).name()));
break;
case ANALYZE_DT_UNSIGNED_CHAR:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned char).name()));
break;
case ANALYZE_DT_SIGNED_SHORT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(short).name()));
break;
case SPMANALYZE_DT_UNSIGNED_SHORT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned short).name()));
break;
case ANALYZE_DT_SIGNED_INT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(long).name()));
break;
case SPMANALYZE_DT_UNSIGNED_INT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(unsigned long).name()));
break;
case ANALYZE_DT_FLOAT:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(float).name()));
break;
case ANALYZE_DT_DOUBLE:
itk::EncapsulateMetaData<std::string>
(thisDic,ITK_OnDiskStorageTypeName,
std::string(typeid(double).name()));
break;
case ANALYZE_DT_RGB:
// DEBUG -- Assuming this is a triple, not quad
//image.setDataType( uiig::DATA_RGBQUAD );
break;
default:
break;
}
itk::ExposeMetaData<std::string>(thisDic,ITK_OnDiskStorageTypeName,temp);
if (temp==std::string(typeid(char).name()))
{
strncpy(this->m_Hdr.hk.data_type,"BINARY",10);
}
else if (temp==std::string(typeid(unsigned char).name()))
{
strncpy(this->m_Hdr.hk.data_type,"CHAR",10);
}
else if (temp==std::string(typeid(short).name()))
{
strncpy(this->m_Hdr.hk.data_type,"SHORT",10);
}
else if (temp==std::string(typeid(unsigned short).name()))
{
strncpy(this->m_Hdr.hk.data_type,"USHORT",10);
}
else if (temp==std::string(typeid(long).name()))
{
strncpy(this->m_Hdr.hk.data_type,"INT",10);
}
else if (temp==std::string(typeid(unsigned long).name()))
{
strncpy(this->m_Hdr.hk.data_type,"UINT",10);
}
else if (temp==std::string(typeid(float).name()))
{
strncpy(this->m_Hdr.hk.data_type,"FLOAT",10);
}
else if (temp==std::string(typeid(double).name()))
{
strncpy(this->m_Hdr.hk.data_type,"DOUBLE",10);
}
else
{
strncpy(this->m_Hdr.hk.data_type,"UNKNOWN",10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_OnDiskStorageTypeName,temp))
{
strncpy(this->m_Hdr.hk.data_type,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_ImageFileBaseName,temp))
{
strncpy(this->m_Hdr.hk.db_name,temp.c_str(),18);
}
//Important dime fields
if(itk::ExposeMetaData<std::string>(thisDic,ITK_VoxelUnits,temp))
{
strncpy(this->m_Hdr.dime.vox_units,temp.c_str(),4);
}
if(itk::ExposeMetaData<std::string>(thisDic,ANALYZE_CALIBRATIONUNITS,temp))
{
strncpy(this->m_Hdr.dime.cal_units,temp.c_str(),8);
}
itk::ExposeMetaData<short int>
(thisDic,ITK_OnDiskBitPerPixel,
this->m_Hdr.dime.bitpix);
itk::ExposeMetaData<float>
(thisDic,SPM_ROI_SCALE,
this->m_Hdr.dime.roi_scale);
itk::ExposeMetaData<float>
(thisDic,ANALYZE_CAL_MAX,
this->m_Hdr.dime.cal_max);
itk::ExposeMetaData<float>
(thisDic,ANALYZE_CAL_MIN,
this->m_Hdr.dime.cal_min);
itk::ExposeMetaData<int>
(thisDic,ANALYZE_GLMAX,
this->m_Hdr.dime.glmax);
itk::ExposeMetaData<int>
(thisDic,ANALYZE_GLMIN,
this->m_Hdr.dime.glmin);
//Important hist fields
if(itk::ExposeMetaData<std::string>(thisDic,ITK_FileNotes,temp))
{
strncpy(this->m_Hdr.hist.descrip,temp.c_str(),80);
}
if(itk::ExposeMetaData<std::string>(thisDic,ANALYZE_AUX_FILE_NAME,temp))
{
strncpy(this->m_Hdr.hist.aux_file,temp.c_str(),24);
}
itk::SpatialOrientation::ValidCoordinateOrientationFlags coord_orient =
itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_INVALID;
#if defined(ITKIO_DEPRECATED_METADATA_ORIENTATION)
if ( !itk::ExposeMetaData
<itk::SpatialOrientation::ValidCoordinateOrientationFlags>
(thisDic,ITK_CoordinateOrientation, coord_orient) )
{
#endif
std::vector<double> dirx = this->GetDirection(0),
diry = this->GetDirection(1),
dirz = this->GetDirection(2);
typedef itk::SpatialOrientationAdapter::DirectionType DirectionType;
DirectionType dir;
for(unsigned int i = 0; i < 3; i++)
{
dir[i][0] = dirx[i];
dir[i][1] = diry[i];
dir[i][2] = dirz[i];
}
coord_orient =
itk::SpatialOrientationAdapter().FromDirectionCosines(dir);
#if defined(ITKIO_DEPRECATED_METADATA_ORIENTATION)
}
#endif
switch (coord_orient)
{
case itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RPI:
this->m_Hdr.hist.orient =
itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RPI_TRANSVERSE;
break;
case itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_PIR:
this->m_Hdr.hist.orient =
itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_PIR_SAGITTAL;
break;
case itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RIP:
this->m_Hdr.hist.orient =
itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RIP_CORONAL;
break;
default:
this->m_Hdr.hist.orient =
itk::AnalyzeImageIO::ITK_ANALYZE_ORIENTATION_RIP_CORONAL;
itkWarningMacro( "ERROR: Analyze 7.5 File Format"
" Only Allows RPI, PIR, and RIP Orientation " );
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_FileOriginator,temp))
{
strncpy(this->m_Hdr.hist.originator,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_OriginationDate,temp))
{
strncpy(this->m_Hdr.hist.generated,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ANALYZE_ScanNumber,temp))
{
strncpy(this->m_Hdr.hist.scannum,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_PatientID,temp))
{
strncpy(this->m_Hdr.hist.patient_id,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_ExperimentDate,temp))
{
strncpy(this->m_Hdr.hist.exp_date,temp.c_str(),10);
}
if(itk::ExposeMetaData<std::string>(thisDic,ITK_ExperimentTime,temp))
{
strncpy(this->m_Hdr.hist.exp_date,temp.c_str(),10);
}
itk::ExposeMetaData<int>(thisDic,ANALYZE_O_MAX,this->m_Hdr.hist.omax);
itk::ExposeMetaData<int>(thisDic,ANALYZE_O_MIN,this->m_Hdr.hist.omin);
itk::ExposeMetaData<int>(thisDic,ANALYZE_S_MAX,this->m_Hdr.hist.smax);
itk::ExposeMetaData<int>(thisDic,ANALYZE_S_MIN,this->m_Hdr.hist.smin);
}
for( dim=0; dim< this->GetNumberOfDimensions(); dim++ )
{
//NOTE: Analyze dim[0] are the number of dims, and dim[1..7] are
// the actual dims.
this->m_Hdr.dime.dim[dim+1] = m_Dimensions[ dim ];
}
//DEBUG--HACK It seems that analyze 7.5 requires 4 dimensions.
this->m_Hdr.dime.dim[0]= 4;
for( dim=this->GetNumberOfDimensions();(int)dim < this->m_Hdr.dime.dim[0];
dim++ )
{
//NOTE: Analyze dim[0] are the number of dims,
//and dim[1..7] are the actual dims.
this->m_Hdr.dime.dim[dim+1] = 1; //Hardcoded to be 1;
}
for( dim=0; dim< this->GetNumberOfDimensions(); dim++ )
{
//NOTE: Analyze pixdim[0] is ignored, and the number of dims are
//taken from dims[0], and pixdim[1..7] are the actual pixdims.
this->m_Hdr.dime.pixdim[dim+1]= static_cast< float >( m_Spacing[ dim ] );
}
//The next funciton sets bitpix, and datatype, and data_type fields
//Along with gl_min and gl_max fields.
this->DefineHeaderObjectDataType();
local_OutputStream.write( (const char *)&(this->m_Hdr), sizeof(struct dsr) );
if( local_OutputStream.eof() )
{
itkExceptionMacro(<< "Unexpected end of file");
}
local_OutputStream.close();
return;
}
/**
*
*/
void
AnalyzeImageIO
::Write( const void* buffer)
{
//Write the image Information before writing data
this->WriteImageInformation();
//NOTE: voidp is defined by zlib.h
//NOTE: Need const_cast because voidp is "void*", so
// "const voidp" is "void* const", not "const void*".
voidp p = const_cast<voidp>(buffer);
const std::string ImageFileName = GetImageFileName( m_FileName );
const std::string fileExt=GetExtension( m_FileName );
// Check case where image is acually a compressed image
if(!fileExt.compare( "gz" ))
{
// Open the *.img.gz file for writing.
gzFile file_p = ::gzopen( ImageFileName.c_str(), "wb" );
if( file_p==NULL )
{
ExceptionObject exception(__FILE__, __LINE__);
std::string ErrorMessage="Error, Can not write compressed image file for ";
ErrorMessage += m_FileName;
exception.SetDescription(ErrorMessage.c_str());
exception.SetLocation(ITK_LOCATION);
throw exception;
}
#ifdef __OMIT_UNTIL_RGB_IS_NEEEDED
if ( image.getDataType() == uiig::DATA_RGBTRIPLE )
{
// Analyze RGB images are stored in channels, where all the red
// components are stored first, followed by the green and blue components
// for each plane of the volume. This is stored in an image of RGBTRIPLE
// data structures, which are in memory stored as (red,green,blue). The
// triples need to be converted to channels for each plane when writing
// out the image.
// NOTE: Do NOT change this. The math here is necessary for CImageStrided to
// read files correctly
for( register unsigned int l=0; l<tempT; l++ )
{
unsigned int volumeOffset = l*m_uiVolumeOffset;
for( register unsigned int k=0; k<tempZ; k++ )
{
unsigned int planeVolOffset = k*m_uiPlaneOffset + volumeOffset;
// Reading the red channel
{
for( register unsigned int j=0; j<tempY; j++ )
{
unsigned int rowOffset = j*m_uiRowOffset;
for ( register unsigned int i=0; i<tempX; i++ )
{
::gzwrite( file_p,
&(static_cast<unsigned char *>(data)[(m_uiInitialOffset+planeVolOffset+rowOffset)*m_dataSize]) + (i*3), sizeof(unsigned char) );
}
}
}
// Reading the green channel
{
for( register unsigned int j=0; j<tempY; j++ )
{
unsigned int rowOffset = j*m_uiRowOffset;
for ( register unsigned int i=0; i<tempX; i++ )
{
//NOTE: unsigned char * is used to do byte wise offsets The offsets are computed
//in bytes
::gzwrite( file_p, &(static_cast<unsigned char *>(data)[(m_uiInitialOffset+planeVolOffset+rowOffset)*m_dataSize]) + (i*3) + 1, sizeof(unsigned char) );
}
}
}
// Reading the blue channel
{
for( register unsigned int j=0; j<tempY; j++ )
{
unsigned int rowOffset = j*m_uiRowOffset;
for ( register unsigned int i=0; i<tempX; i++ )
{
//NOTE: unsigned char * is used to do byte wise offsets The offsets are computed
//in bytes
::gzwrite( file_p, &(static_cast<unsigned char *>(data)[(m_uiInitialOffset+planeVolOffset+rowOffset)*m_dataSize]) + (i*3) + 2, sizeof(unsigned char) );
}
}
}
}
}
}
else
#endif
{
::gzwrite( file_p,p, static_cast< unsigned >( this->GetImageSizeInBytes() ) );
}
::gzclose( file_p );
//RemoveFile FileNameToRead.img so that it does not get confused with
//FileNameToRead.img.gz
//The following is a hack that can be used to remove ambiguity when an
//uncompressed image is read, and then written as compressed.
//This results in one *.hdr file being assosiated with a *.img and a
// *.img.gz image file.
//DEBUG -- Will this work under windows?
std::string unusedbaseimgname= GetRootName(GetHeaderFileName(m_FileName));
unusedbaseimgname += ".img";
itksys::SystemTools::RemoveFile(unusedbaseimgname.c_str());
}
else
{
//No compression
std::ofstream local_OutputStream;
local_OutputStream.open( ImageFileName.c_str(), std::ios::out | std::ios::binary );
if( !local_OutputStream )
{
ExceptionObject exception(__FILE__, __LINE__);
std::string ErrorMessage="Error opening image data file for writing.";
ErrorMessage += m_FileName;
exception.SetDescription(ErrorMessage.c_str());
exception.SetLocation(ITK_LOCATION);
throw exception;
}
local_OutputStream.write((const char *)p, static_cast< std::streamsize >( this->GetImageSizeInBytes() ) );
bool success = !local_OutputStream.bad();
local_OutputStream.close();
if( !success )
{
ExceptionObject exception(__FILE__, __LINE__);
std::string ErrorMessage="Error writing image data.";
ErrorMessage += m_FileName;
exception.SetDescription(ErrorMessage.c_str());
exception.SetLocation(ITK_LOCATION);
throw exception;
}
//RemoveFile FileNameToRead.img.gz so that it does not get confused with FileNameToRead.img
//The following is a hack that can be used to remove ambiguity when an
//uncompressed image is read, and then written as compressed.
//This results in one *.hdr file being assosiated with a *.img and a *.img.gz image file.
//DEBUG -- Will this work under windows?
std::string unusedbaseimgname= GetRootName(GetHeaderFileName(m_FileName));
unusedbaseimgname += ".img.gz";
itksys::SystemTools::RemoveFile(unusedbaseimgname.c_str());
}
}
} // end namespace itk
|