Skip to content

Commit

Permalink
Updating API. Closes #72
Browse files Browse the repository at this point in the history
Updating the API in the readme file. 
Using the latest `operations` module.
This closes #72
  • Loading branch information
BrunoSanchez authored Nov 9, 2021
1 parent acaade3 commit a5ee3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ $ pip install properimage
To create a proper-subtraction of images:

```python
>>> from properimage import propersubtract as ps
>>> D, P, Scorr, mask = ps.subtract(ref=ref_path, new=new_path, smooth_psf=False, fitted_psf=True,
>>> from properimage.operations import subtract
>>> D, P, Scorr, mask = subtract(ref=ref_path, new=new_path, smooth_psf=False, fitted_psf=True,
... align=False, iterative=False, beta=False, shift=False)
```

Expand Down

0 comments on commit a5ee3b7

Please sign in to comment.