-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add CropLike #299
Merged
Merged
Add CropLike #299
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
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 |
---|---|---|
|
@@ -532,3 +532,64 @@ def __call__(self, results): | |
raise ValueError(f'Wrong img ndim: {img.ndim}.') | ||
results['gt'] = img | ||
return results | ||
|
||
|
||
@PIPELINES.register_module() | ||
class ModifySize: | ||
"""Modify size. | ||
|
||
Modify the size of image by cropping or padding. Align upper-left. | ||
|
||
Args: | ||
target_key (str): The target key. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is a "target key"? |
||
source_key (str | None): The source key. Default: None. | ||
target_size (Tuple[int] | None): The target size. [h, w] | ||
Default: None. | ||
|
||
The priority of getting 'target size' is: | ||
1, results[source_key].shape | ||
2, target_size | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a note for the required, added and modified keys. |
||
""" | ||
|
||
def __init__(self, target_key, source_key=None, target_size=None): | ||
|
||
assert (source_key or target_size), 'Need source_key or target_size' | ||
self.target_key = target_key | ||
self.source_key = source_key | ||
if isinstance(target_size, int): | ||
self.target_size = (target_size, target_size) | ||
else: | ||
self.target_size = target_size | ||
|
||
def __call__(self, results): | ||
"""Call function. | ||
|
||
Args: | ||
results (dict): A dict containing the necessary information and | ||
data for augmentation. | ||
|
||
Returns: | ||
dict: A dict containing the processed data and information. | ||
""" | ||
if self.source_key and self.source_key in results: | ||
size = results[self.source_key].shape | ||
elif self.target_size: | ||
size = self.target_size | ||
else: | ||
raise ValueError('Need effective target_key or target_size') | ||
old_image = results[self.target_key] | ||
old_size = old_image.shape | ||
h, w = old_size[:2] | ||
new_size = size[:2] + old_size[2:] | ||
h_cover, w_cover = min(h, size[0]), min(w, size[1]) | ||
|
||
format_image = np.zeros(new_size, dtype=old_image.dtype) | ||
format_image[:h_cover, :w_cover] = old_image[:h_cover, :w_cover] | ||
results[self.target_key] = format_image | ||
|
||
return results | ||
|
||
def __repr__(self): | ||
return self.__class__.__name__ + (f' target_key={self.target_key}, ' + | ||
f'source_key={self.source_key}, ' + | ||
f'target_size={self.target_size}') |
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
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.
Random thought: how about rename it to "TopLeftCrop"?