123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- function ok = nrrdWriter(filename, matrix, pixelspacing, origin, encoding)
- [pathf, fname, ext] = fileparts(filename);
- format=ext(2:end);
- matrix = permute(matrix, [2 1 3]);
- dims=(size(matrix));
- ndims=length(dims);
- encoding = lower(encoding);
- encodingCond = isequal(encoding, 'ascii') || isequal(encoding, 'raw') || isequal(encoding, 'gzip');
- assert(encodingCond, 'Unsupported encoding')
- format = lower(format);
- formatCond = isequal(format,'nhdr') || isequal(format,'nrrd');
- assert(formatCond, 'Unexpected format');
- if (encodingCond && formatCond)
-
-
-
-
- fid = fopen(filename, 'wb');
- fprintf(fid,'NRRD0004\n');
-
-
- mtype=class(matrix);
- outtype=setDatatype(mtype);
- fprintf(fid,['type: ', outtype, '\n']);
-
-
- fprintf(fid,['dimension: ', num2str(ndims), '\n']);
-
- if isequal(ndims, 2)
- fprintf(fid,'space: left-posterior\n');
- elseif isequal (ndims, 3)
- fprintf(fid,'space: left-posterior-superior\n');
- end
- fprintf(fid,['sizes: ', num2str(dims), '\n']);
-
- if isequal(ndims, 2)
- fprintf(fid,['space directions: (', num2str(pixelspacing(1)), ...
- ',0) (0,', num2str(pixelspacing(2)), ')\n']);
- fprintf(fid,'kinds: domain domain\n');
- elseif isequal (ndims, 3)
- fprintf(fid,['space directions: (', num2str(pixelspacing(1)), ...
- ',0,0) (0,', num2str(pixelspacing(2)), ',0) (0,0,', ...
- num2str(pixelspacing(3)), ')\n']);
- fprintf(fid,'kinds: domain domain domain\n');
- end
-
- fprintf(fid,['encoding: ', encoding, '\n']);
-
- [~,~,endian] = computer();
-
- if (isequal(endian, 'B'))
- fprintf(fid,'endian: big\n');
- else
- fprintf(fid,'endian: little\n');
- end
-
- if isequal(ndims, 2)
- fprintf(fid,['space origin: (', num2str(origin(1)),',', num2str(origin(2)),')\n']);
- elseif isequal (ndims, 3)
- fprintf(fid,['space origin: (', num2str(origin(1)), ...
- ',',num2str(origin(2)),',', num2str(origin(3)),')\n']);
- end
-
- if (isequal(format, 'nhdr'))
-
- fprintf(fid, ['data file: ', [fname, '.', encoding], '\n']);
-
- fclose(fid);
- if isequal(length(pathf),0)
- fid = fopen([fname, '.', encoding], 'wb');
- else
- fid = fopen([pathf, filesep, fname, '.', encoding], 'wb');
- end
- else
- fprintf(fid,'\n');
- end
-
- ok = writeData(fid, matrix, outtype, encoding);
- fclose(fid);
- end
- function datatype = setDatatype(metaType)
- switch (metaType)
- case {'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64',...
- 'uint64', 'double'}
- datatype = metaType;
-
- case {'single'}
- datatype = 'float';
-
- otherwise
- assert(false, 'Unknown datatype')
- end
-
- function ok = writeData(fidIn, matrix, datatype, encoding)
- switch (encoding)
- case {'raw'}
-
- ok = fwrite(fidIn, matrix(:), datatype);
-
- case {'gzip'}
-
-
- tmpBase = tempname(pwd);
- tmpFile = [tmpBase '.gz'];
- fidTmpRaw = fopen(tmpBase, 'wb');
- assert(fidTmpRaw > 3, 'Could not open temporary file for GZIP compression');
-
- fwrite(fidTmpRaw, matrix(:), datatype);
- fclose(fidTmpRaw);
-
-
- gzip(tmpBase);
-
-
- fidTmpRaw = fopen(tmpFile, 'rb');
- tmp = fread(fidTmpRaw, inf, [datatype '=>' datatype]);
- cleaner = onCleanup(@() fclose(fidTmpRaw));
- ok = fwrite (fidIn, tmp, datatype);
-
- delete (tmpBase);
- delete (tmpFile);
- case {'ascii'}
-
- ok = fprintf(fidIn,'%u ',matrix(:));
-
-
- otherwise
- assert(false, 'Unsupported encoding')
- end
|