Skip to content

Commit

Permalink
remove readTileIndex, as only the TissueCyte used this.
Browse files Browse the repository at this point in the history
  • Loading branch information
raacampbell committed May 12, 2020
1 parent 6e0f78a commit c89379c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 58 deletions.
6 changes: 3 additions & 3 deletions code/stitching/generateTileIndex.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
%
%
% Rob Campbell - Basel 2014
%
%
% See also: readTileIndex





% No 2nd arg needed:
Expand Down
15 changes: 11 additions & 4 deletions code/stitching/tileLoad.m
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,15 @@
%
% OUTPUTS
% im - The image or image stack at 16 bit unsigned integers.
% index - The index data of each tile (see readTileIndex) allowing the locations
% of the tiles in the mosaic to be determined.
% index - The index data of each tile allowing the locations
% of the tiles in the mosaic to be determined:
%
% 1. file index
% 2. z-section index
% 3. optical section
% 4. tile row
% 5. tile column
%
%
%
% EXAMPLES
Expand All @@ -56,7 +63,7 @@
% updated to handle param/value pairs - Basel 2017
%
%
% See also readTileIndex, generateTileIndex
% See also generateTileIndex


if length(coords)~=5
Expand Down Expand Up @@ -236,7 +243,7 @@

%---------------
%Build index output so we are compatible with the TV version (for now)
index = ones(length(indsToKeep),8);
index = ones(length(indsToKeep),5);

index(:,1) = indsToKeep;
index(:,2) = sectionNum;
Expand Down
51 changes: 0 additions & 51 deletions code/utils/readTileIndex.m

This file was deleted.

0 comments on commit c89379c

Please sign in to comment.