Skip to content
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

update img_shape after Expand #10076

Open
wants to merge 1 commit into
base: dev-2.x
Choose a base branch
from

Conversation

Mactarvish
Copy link

@Mactarvish Mactarvish commented Apr 3, 2023

Motivation

Updating img_shape after Expand, otherwise if there's a RandomFlip after Expand the result will be incorrect, because RandomFlip maintains flipped gt_bboxes using result['img_shape'].

Modification

updating img_shape after Expand

BC-breaking (Optional)

None

Use cases (Optional)

train_pipeline = [
    dict(type='LoadImageFromFile', to_float32=True),
    dict(type='LoadAnnotations', with_bbox=True),
    dict( 
        type='Resize', 
        img_scale=[(480 // 2 - 20, 768 // 2 - 20), (480 // 2 + 20, 768 // 2 + 20)],
        multiscale_mode='range', 
        keep_ratio=True),  
    # Using RandomFlip after an Expand directly will course incorrect result before this commit, now it is fixed.
    dict( 
        type='Expand',
        mean=(0,),
        prob=0.5,
        ratio_range=(1.2, 1.5)),
    dict(type='RandomFlip', flip_ratio=0.5, direction=['horizontal']),
    dict(type='Normalize', **img_norm_cfg),
    dict(type='Pad', size_divisor=32),
    dict(type='DefaultFormatBundle'),
    dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels']),
]

Checklist

  1. Pre-commit or other linting tools are used to fix the potential lint issues.
  2. The modification is covered by complete unit tests. If not, please add more unit test to ensure the correctness.
  3. If the modification has potential influence on downstream projects, this PR should be tested with downstream projects, like MMDet or MMCls.
  4. The documentation has been modified accordingly, like docstring or example tutorials.

update img_shape after Expand, otherwise if there's a RandomFlip after Expand the result will be incorrect, because RandomFlip maintains new gt_bboxes using result['img_shape'].
@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@OpenMMLab-Assistant005
Copy link

Hi @Mactarvish !We are grateful for your efforts in helping improve this open-source project during your personal time.
Welcome to join OpenMMLab Special Interest Group (SIG) private channel on Discord, where you can share your experiences, ideas, and build connections with like-minded peers. To join the SIG channel, simply message moderator— OpenMMLab on Discord or briefly share your open-source contributions in the #introductions channel and we will assist you. Look forward to seeing you there! Join us :https://discord.gg/UjgXkPWNqA
If you have a WeChat account,welcome to join our community on WeChat. You can add our assistant :openmmlabwx. Please add "mmsig + Github ID" as a remark when adding friends:)
Thank you again for your contribution❤

@hhaAndroid hhaAndroid changed the base branch from master to dev-2.x May 5, 2023 02:32
@Mactarvish
Copy link
Author

why still not merged yet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants