-
Notifications
You must be signed in to change notification settings - Fork 19.6k
Rewriting image augmenter #2446
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
Merged
Merged
Changes from 19 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7b437c1
Much better image data augmentor
chsasank 86da4f3
removed unnecessary functions
chsasank 84ad1cf
shift origin to centre of the image for homographies
chsasank 6dfaa5e
init commit
joelthchao f140bf4
change to zoom_range
joelthchao c299c71
Merge pull request #1 from joelthchao/master
chsasank 08e0f59
Added scikit-image to extras_require in setup.py
chsasank 2e2d31d
add zoom_range test, exception for invalid zoom_range
joelthchao 4e4d273
add scikit-image to dependency
joelthchao bfef76c
fix fit and retain old functions for unit test
joelthchao f2df805
use ndi insteadskimage in random_transform
chsasank 6ec0cd5
removed buggy code in random_rotations, shears etc and replaced it w…
chsasank 3ede208
Merge pull request #2 from chsasank/nditransform
chsasank 94af894
remove sci-image, implement ndimage based methods, refactor random_tr…
joelthchao d1b729f
random_zoom, array_to_img consider dim_ordering
joelthchao b97336e
add random_channel_shift, support fill_mode and cval
joelthchao 53fc7c8
image doc, update test_image, PEP8
joelthchao 50c17f6
fix channel shift clip
joelthchao a4f8a55
fix doc, refine code
joelthchao 5c127d1
detail explain of zoom range
joelthchao e1f9fc8
check coding style
joelthchao File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we explain if zoom_range is float,
[lower, upper] = [1-zoom_range, 1+ zoom_range]
, because it is not apparent.