Skip to content

Commit

Permalink
hack fix for making sure array is c contiguous post-transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
steigersg committed Oct 17, 2023
1 parent 5f191c2 commit c57a239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catkit2/services/zwo_camera/zwo_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def rot_flip_image(self, img):
img = np.flipud(img)
if self.flip_y:
img = np.fliplr(img)
return img
return np.ascontiguousarray(img)


if __name__ == '__main__':
Expand Down

0 comments on commit c57a239

Please sign in to comment.