Skip to content

Commit

Permalink
Merge pull request #1 from camlloyd/v0.1.1
Browse files Browse the repository at this point in the history
Prepare for v0.1.1 release
  • Loading branch information
camlloyd committed Dec 30, 2021
2 parents acec777 + aeaa964 commit f16b987
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## Version 0.1.1
- Fixed bug when checking for 3D Disc scan pattern.

## Version 0.1.0
- Initial release.
4 changes: 2 additions & 2 deletions oct_to_tiff/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main():
parser.add_argument('--overwrite', default=False, action='store_true', help='overwrite output file if it exists')
parser.add_argument('--size', type=float, help='scan size in mm^2')
parser.add_argument('--angio', default=False, action='store_true', help='convert extracted OCTA data')
parser.add_argument('--version', action='version', version='%(prog)s 0.1.0')
parser.add_argument('--version', action='version', version='%(prog)s 0.1.1')
args = parser.parse_args()

file_path = args.input
Expand All @@ -30,7 +30,7 @@ def convert_oct_file():
pixel_size_x = 0.007797
pixel_size_y = 0.003071
pixel_size_z = 0.040000
if '3D Disc' in file_name:
elif '3D Disc' in file_name:
volume = np.frombuffer(f.read(), dtype=single)
frames_per_data_group = 106
total_data_groups = 1
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = oct_to_tiff
version = 0.1.0
version = 0.1.1
author = Cameron Lloyd
author_email = lloyd@med.unideb.hu
description = A command line tool for converting optical coherence tomography angiography (OCTA) data.
Expand Down

0 comments on commit f16b987

Please sign in to comment.