Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to [email protected] #276

Merged
merged 5 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyclesperanto/_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __add__(x1, x2):
else:
from ._tier1 import add_images_weighted

return add_images_weighted(x1, x2, factor0=1, factor1=1)
return add_images_weighted(x1, x2, factor1=1, factor2=1)


def __iadd__(x1, x2):
Expand All @@ -150,7 +150,7 @@ def __iadd__(x1, x2):
else:
from ._tier1 import add_images_weighted

add_images_weighted(temp, x2, output_image=x1, factor0=1, factor1=1)
add_images_weighted(temp, x2, output_image=x1, factor1=1, factor2=1)
return x1


Expand All @@ -163,7 +163,7 @@ def __sub__(x1, x2):
else:
from ._tier1 import add_images_weighted

return add_images_weighted(x1, x2, factor0=1, factor1=-1)
return add_images_weighted(x1, x2, factor1=1, factor2=-1)


def __div__(x1, x2):
Expand Down
Loading
Loading