From 4e8b951c0dd1afe2298159591af17818697a8b59 Mon Sep 17 00:00:00 2001 From: sfarrens Date: Mon, 12 Jun 2017 17:55:19 +0200 Subject: [PATCH] updated readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6034abb..b1532cf 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,8 @@ To run the code in an active Python session you should include the following imp The code can then be run as follows: ```Python ->>> set_up_log('LOG_FILE_NAME') ->>> primal_res, dual_res = run(INPUT_IMAGES, INPUT_PSFS, KEYWORDS) +>>> log = set_up_log('LOG_FILE_NAME') +>>> primal_res, dual_res = run(INPUT_IMAGES, INPUT_PSFS, log=log, **KEYWORDS) ``` Provided `INPUT_IMAGES` and `INPUT_PSFS` have been read into memory and that the required `KEYWORDS` dictionary has been created (this requires defining values for virtually all of the arguments listed [below](#opt_anchor)), the resulting deconvolved images will be saved to the variable `primal_res`.