Skip to content

Commit

Permalink
fixup! Add PixelMapping
Browse files Browse the repository at this point in the history
  • Loading branch information
torbsorb committed Dec 15, 2023
1 parent be4d857 commit 4c25ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/zivid/experimental/_pixel_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PixelMapping:
Required when mapping an index in a subsampled point cloud to e.g. a full resolution 2D image.
"""

def __init__(self, row_stride=1, col_stride=1, row_offset=0.0, col_offset=0.0) -> None:
def __init__(self, row_stride=1, col_stride=1, row_offset=0.0, col_offset=0.0):
self.__impl = _zivid.PixelMapping(
row_stride, col_stride, row_offset, col_offset
)
Expand Down

0 comments on commit 4c25ea5

Please sign in to comment.