-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use cryotypes for projection model backend (#18)
* feat: initialize cryotypes projection model in usage example * feat: rely everywhere on cryotypes ProjectionModel * refactor: add utility functions for matrix generation to facilitate projection_model to matrix conversion * refactor: remoeve image stretch function * fix: set cryotypes version to 0.2
- Loading branch information
Showing
12 changed files
with
282 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
"""2D and 3D affine transform functionality.""" | ||
|
||
from .affine_transform import affine_transform_2d, affine_transform_3d, stretch_image | ||
from .affine_transform import affine_transform_2d, affine_transform_3d | ||
|
||
__all__ = [ | ||
"affine_transform_2d", | ||
"affine_transform_3d", | ||
"stretch_image", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.