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
|
function dimensions = PhotoreceptorDimensions(receptorTypes,whichDimension,species,source)
% dimensions = PhotoreceptorDimensions(receptorTypes,whichDimension,species,source)
%
% Return estimates of photoreceptor dimensions.
%
% Allowable receptor types depend on species and source, but the general
% list is:
% SCone, MCone, LCone, FovealSCone, FovealMCone, FovealLCone, Rod.
%
% The type argument may be a single string or a cell array of strings. If it
% is an array, a column vector of values is returned.
%
% The foveal version of cone types is sensible only for primates. Not all
% estimate sources support all receptor types.
%
% Note that the following three numbers are overdetermined: photopigment
% specific density (sd), photopigment axial density (ad), and outer segment
% length osl. In particular, ad = sd*osl. Depending on the measurement
% method, different sources provide different pairs of these numbers.
% We have attempted to enforce this consistency in the set of routines
% PhotopigmentSpecificDensity, PhotopigmentAxialDensity, and PhotoreceptorDimensions.
% That is to say, for the same source, species, and type, you should get
% a consistent triplet of numbers.
%
% Argument whichDimension may take on values:
% OSdiam, ISdiam, OSlength.
%
% Supported species:
% Human (Default), GuineaPig, Dog
%
% Supported sources:
% Rodieck (Default).
% CVRL (Human Cone OS length)
% Webvision (Human Cone IS diameter)
% Hendrickson (Human Rod OS length)
% SterlingLab (GuineaPig dimensions).
% Generic
% PennDog (Dog dimensions).
% None (returns empty for the corresponding value)
%
% The Generic type returns a single number for all species/type.
%
% 7/11/03 dhb Wrote it.
% 12/04/07 dhb Added dog but with placeholder numbers.
% 8/9/13 dhb Comment clean up, allow 'None' to return empty as the value.
% 8/10/13 dhb Added Webvision source for IS diameter.
% Fill in defaults
if (nargin < 3 || isempty(species))
species = 'Human';
end
if (nargin < 4 || isempty(source))
source = 'Rodieck';
end
% Fill in dimensions according to specified source
if (iscell(receptorTypes))
dimensions = zeros(length(receptorTypes),1);
else
dimensions = zeros(1,1);
end
for i = 1:length(dimensions)
if (iscell(receptorTypes))
type = receptorTypes{i};
elseif (i == 1)
type = receptorTypes;
else
error('Argument receptorTypes must be a string or a cell array of strings');
end
switch (source)
case {'None'}
dimensions = [];
case {'Generic'}
% These are fairly generic dimensions
switch (whichDimension)
case 'OSlength'
dimensions(i) = 32;
case 'OSdiam'
dimensions(i) = 2;
case 'ISdiam'
dimensions(i) = 2;
otherwise
error('Unsupported dimension requested');
end
case {'Webvision'}
% http://webvision.med.utah.edu
switch (whichDimension)
case 'ISdiam'
switch (type)
% http://webvision.med.utah.edu/book/part-ii-anatomy-and-physiology-of-the-retina/photoreceptors/
% Attributed to Helga Kolb
case {'FovealLCone', 'FovealMCone' 'FovealSCone'}
dimensions(i) = 1.5;
case {'LCone', 'MCone' 'SCone'}
dimensions(i) = 6;
case {'Rod'}
dimensions(i) = 2;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise
error('Unsupported dimension requested');
end
case ('PennDog')
% Numbers we use for dog eyes at Penn. Got these from
% Gus Aguirre. See emails sent about 12/5/07.
switch (species)
case {'Dog'}
switch (whichDimension)
case 'OSlength',
switch (type)
case {'LCone', 'SCone'}
dimensions(i) = 13;
case {'Rod'}
dimensions(i) = 13.5;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
case 'ISdiam'
switch (type)
case {'LCone', 'SCone'}
dimensions(i) = 2;
case {'Rod'}
dimensions(i) = 2;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
case 'OSdiam'
switch (type)
case {'LCone', 'SCone'}
dimensions(i) = 1.25;
case {'Rod'}
dimensions(i) = 1;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise,
error(sprintf('Unsupported dimension %s requested',whichDimension));
end
otherwise,
error(sprintf('%s estimates not available for species %s',source,species));
end
case ('Rodieck')
% From Rodieck's "standard observer", Appendix B
% in The First Steps of Seeing.
switch (species)
case {'Human'}
switch (whichDimension)
case 'OSlength',
switch (type)
case {'FovealLCone', 'FovealMCone', 'FovealSCone'}
dimensions(i) = 33;
case {'Rod'}
dimensions(i) = 31.2;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
case 'ISdiam'
switch (type)
case {'FovealLCone', 'FovealMCone', 'FovealSCone'}
dimensions(i) = 2.3;
case {'Rod'}
dimensions(i) = 2.22;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise,
error(sprintf('Unsupported dimension %s requested',whichDimension));
end
otherwise,
error(sprintf('%s estimates not available for species %s',source,species));
end
case {'CVRL'}
% These numbers are my encapsulations of CVRL's summary of a variety of data.
% See CVRL summary text at:
% http://cvrl.ioo.ucl.ac.uk/database/text/intros/introlength.htm.
switch (species)
case {'Human'}
switch (whichDimension)
case 'OSlength',
switch (type)
case {'FovealLCone', 'FovealMCone'}
dimensions(i) = 35.5;
case {'FovealSCone'}
dimensions(i) = 35.5*0.95;
case {'LCone', 'MCone'}
dimensions(i) = 18;
case {'SCone'}
dimensions(i) = 18*0.82;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise,
error(sprintf('Unsupported dimension %s requested',whichDimension));
end
otherwise,
error(sprintf('%s estimates not available for species %s',source,species));
end
case {'Hendrickson'}
% From Hendrickson and Drucker, numbers provided at CVRL database:
% http://cvrl.ioo.ucl.ac.uk/database/text/outseg/length.htm. 40 um
% is the number provided for mid-peripheral rods, 40-45 is cited for
% parafoveal rods. This routines returns 40.
switch (species)
case {'Human'}
switch (whichDimension)
case 'OSlength',
switch (type)
case {'Rod'}
dimensions(i) = 40;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise,
error(sprintf('Unsupported dimension %s requested',whichDimension));
end
otherwise,
error(sprintf('%s estimates not available for species %s',source,species));
end
case {'SterlingLab'}
% These are values that Lu Yin provided, based on unpublished
% measurements used in the Sterling lab.
switch (species)
case {'GuineaPig'}
switch (whichDimension)
case 'OSdiam',
switch (type)
case {'LCone', 'MCone', 'SCone'}
dimensions(i) = 2;
case 'Rod'
dimensions(i) = 2;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
case 'ISdiam',
switch (type)
case {'LCone', 'MCone', 'SCone'}
dimensions(i) = 2.8;
case 'Rod'
dimensions(i) = 2.4;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
case 'OSlength',
switch (type)
case {'LCone', 'MCone', 'SCone'}
dimensions(i) = 8;
case 'Rod'
dimensions(i) = 16.2;
otherwise,
error(sprintf('Unsupported receptor type %s/%s for %s estimates in %s',...
type,whichDimension,source,species));
end
otherwise,
error(sprintf('Unsupported dimension %s requested',whichDimension));
end
otherwise,
error(sprintf('%s estimates not available for species %s',source,species));
end
% Nope!
otherwise
error(sprintf('Unknown source %s for photoreceptor dimension estimates',source));
end
end
|