-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changes * Add 3D support to the polar transform library such that one can give a stack of images, RGB or grayscale, and it will apply the polar transform to each image separately. * Include useMultithreading argument to the polar/cartesian conversion functions to allow for speedup of 3D images * Reorganize code into multiple files rather than one large file * polarTransform.py now is split into convertToCartesianImage, convertToPolarImage, imageTransform and pointsConversion Python files * This change increases readability of the code and aides in development * This change includes moving the code files and the test folder into one polarTransform folder that will be copied to site-packages when installed via pip. Previously, the tests folder was thrown into the sites-packages which was confusing because multiple packages could have tests and it is not obvious that the tests were for polarTransform. This is now fixed by this change. * Update documentation to include information about 3D conversion capabilities. * Create tests for 3D support by using OpenCV to create/load videos where each frame is considered one part of a 3D Numpy array that is used for conversion between polar/cartesian domain * Update TravisCI to include codecov support (still need to adequately test) * Add __version__ string to polarTransform package that contains the current version * Update package to include test data when installing via PyPi
- Loading branch information
1 parent
474c9e7
commit 5215e6e
Showing
51 changed files
with
2,203 additions
and
1,787 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,2 +1,3 @@ | ||
include README.rst | ||
include LICENSE | ||
include LICENSE | ||
include polarTransform/tests/data/* |
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
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.