Skip to content
Snippets Groups Projects
Commit d554d23d authored by Yoann Guilhem's avatar Yoann Guilhem
Browse files

Replace old code name (matlabDCT) by the proper one (DCT).

parent be1071ef
No related branches found
No related tags found
No related merge requests found
......@@ -3,16 +3,16 @@ function gtCreateDoc(outDir, src)
%
% gtCreateDoc(outDir, src)
% -------------------------------------------------------------------------
% Create the documentation in the matlabDCT folder (by default) by
% Create the documentation in the DCT folder (by default) by
% producing the index.html file, which can be opened with a browser.
%
% INPUT:
% outDir = <string> Path to the output directory, from matlabDCT root
% outDir = <string> Path to the output directory, from DCT root
% directory (produces ~/GT_MATLAB_HOME/outDir).
%
% OPTIONAL INPUT:
% src = <string> Path to the source directories or files, from
% matlabDCT root directory, it can be:
% DCT root directory, it can be:
% - 'zUtil_OAR/OAR_make.m' : only OAR_make.m
% - 'zUtil_OAR' : only zUtil_OAR dir
% - {'zUtil_GUI', 'zUtil_OAR'} : multiple directories
......@@ -45,7 +45,7 @@ function gtCreateDoc(outDir, src)
% Check if DCT source directory exists
if ~exist(sourceDir, 'dir')
error('DOC:no_DCT_directory', ...
'The matlabDCT root folder does not exist');
'The DCT root folder does not exist');
end
% Check if documentation output directory exists
......
function info = gtVersion()
% GTVERSION Gives matlabDCT version used with git information
% GTVERSION Gives DCT version used with git information
% -------------------------------------------------------------------------
% info = gtVersion()
%
......
......@@ -204,7 +204,7 @@ tifTag.Photometric = Tiff.Photometric.MinIsBlack;
tifTag.PlanarConfiguration = Tiff.PlanarConfiguration.Chunky;
tifTag.ImageWidth = outVolSizeX;
tifTag.ImageLength = outVolSizeY;
tifTag.Software = 'matlabDCT';
tifTag.Software = 'DCT http://sourceforge.net/projects/dct/';
% Guessing output directory, filename and extension
[fpath, fname, fext] = fileparts(filename);
......
......@@ -25,7 +25,7 @@ function gtVTKStructGridWriter(vol, filename, varargin)
% General parameters
par.spacing = ones(1, 3);
par.origin = zeros(1, 3);
par.header = 'VTK structured volume created by matlabDCT';
par.header = 'VTK structured volume created by DCT http://sourceforge.net/projects/dct/';
par.binary = true;
par.verbose = false;
par.cmap = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment