ex-6: mode option added to main.c

This commit is contained in:
Giù Marcer 2020-03-29 20:36:38 +02:00 committed by rnhmjoj
parent 630602b9af
commit d42b14c6f1

View File

@ -149,6 +149,7 @@ int main(int argc, char **argv) {
fprintf(stderr, "\t-b N\t\tThe number of θ bins.\n");
fprintf(stderr, "\t-s SIGMA\tThe sigma of gaussian kernel.\n");
fprintf(stderr, "\t-r N\t\tThe number of RL deconvolution rounds.\n");
fprintf(stderr, "\t-m MODE\t\tThe deconvolution mode: 'fft' or 'rl'.\n");
fprintf(stderr, "\t-n MU\t\tThe mean (μ) of Poisson noise to add to the convolution.\n");
return EXIT_FAILURE;
}