Skip to content

Commit

Permalink
0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl5766 committed Sep 12, 2024
1 parent f567e95 commit 2a2802c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## Computer Vision Pipeline Tools

[`cvpl_tools` documentation](https://www.khanlab.ca/cvpl_tools/API/napari_zarr.html)

cvpl_tools is a Python package for utilities and classes related to the file I/O, dataset record keeping for image processing and computer vision.

Functionalities this repository provides for managing datasets using DatasetReference:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cvpl-tools"
version = "0.5.4"
version = "0.5.5"
description = "A Python package for utilities and classes related to the file I/O, dataset record keeping and visualization for image processing and computer vision."
authors = ["Karl5766 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/cvpl_tools/im/process/any_to_any.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class DownsamplingByIntFactor(SegProcess):
def __init__(self, factor: int = 2 | tuple):
def __init__(self, factor: int | tuple = 2):
"""Creates a DownsamplingByIntFactor object
Args:
Expand Down

0 comments on commit 2a2802c

Please sign in to comment.