From 271f16776b1453930bad2a12e7208e57b87d6042 Mon Sep 17 00:00:00 2001 From: Mark Graham Date: Fri, 22 Sep 2023 06:39:55 -0600 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 42479ca..74b65bc 100644 --- a/README.md +++ b/README.md @@ -54,12 +54,19 @@ fundus_image.save('fds_testing_fundus.jpg') metadata = fds.read_all_metadata(verbose=True) # extracts all other metadata with open("fds_metadata.json", "w") as outfile: outfile.write(json.dumps(metadata, indent=4)) + +# create and save a DICOM (.fda/.fds only for now) +dcm = create_dicom_from_oct(filepath) ``` ## Contributions Are welcome! Here is a [development roadmap](https://github.com/marksgraham/OCT-Converter/issues/86), including some easy first issues. Please open a [new issue](https://github.com/marksgraham/OCT-Converter/issues/new) to discuss any potential contributions. ## Updates + +22 September 2023 +- DICOM support: can now save .fda/.fds files as DICOMs with metadata populated. + 28 March 2023 - Metadata extraction for .fds expanded to match that of .fda file.