Skip to main content
. Author manuscript; available in PMC: 2018 Aug 9.
Published in final edited form as: Med Image Comput Comput Assist Interv. 2015 Nov 18;9349:28–36. doi: 10.1007/978-3-319-24553-9_4

Algorithm 1. IMOC for Multiple shell Scheme Design:

Input: number of samples for S shells: {Ks}s=1S
Output: {us,i}i=1Ks.
// binary search {θs} from {(0, θsub)}. {θsub}s=0S are the upper bounds of the covering radii;
θs0=0, θs1=θsub, ∀s = 0, 1, …, S;
repeat
θs=(θs0+θs1)/2, ∀s = 0, 1, …, S;
[IsSatisfied,{us,i}]=MOC({θs}s=0S,{Ks}s=1S);
if IsSatisfied then θs0=θs, ∀s = 0, 1, …, S;
else θs1=θs, ∀s = 0, 1, …, S;
until θs does not change, ∀s = 0, 1, …, S;