-
Notifications
You must be signed in to change notification settings - Fork 98
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
[Question] Visualize the augmented data. #280
Comments
Dear @ArpanGyawali , there is no build in way of visualising the augmented data, so you need to write your own script. Best, |
Thanks @mibaumgartner |
hi @mibaumgartner @partha-ghosh |
Hi @ArpanGyawali, nnDetection/nndet/io/datamodule/bg_loader.py Line 185 in b0504dc
The documentation on MirrorTransform from Best, |
Dear @ArpanGyawali , please note that nnDetection transposes the data during its preprocessing -> the anisotropic axes (usually denoted by z) is moved to the first position (i.e. index 0). The definition of left/right depends on you data since the other axis do not change their ordering. Setting the mirror axis to [0] results in mirroring which is only performed along the z direction. Having a visual look is definitely recommended when manipulating augmentation settings :) Best, |
@mibaumgartner @partha-ghosh |
I am working on LVO detection. I used the base_more augmentation with some modification. I only wanted rotation on z-axis and only horizontal flip on axial view. So i changed the miror axis to [0]. But i am not sure i did the right thing.
So, i wanted to know if there is a way to visualize the augmented data? Or if i need to create my own script?
Even if i am right or wrong in the case of mirroring, it would be great if i would be able to visualize those dataset.
Thanks.
The text was updated successfully, but these errors were encountered: