Add AutoAdjustChannel transform
See original GitHub issueIs your feature request related to a problem? Please describe.
Now we have AddChannel and AsChannelFirst transforms, need users to manually select expected transform to convert their data to be “channel-first”. Several internal researchers got confused by the wrong transform, especially when their image and label have different shapes(maybe image is 3 channels data and channel last, label is single channel data and doesn’t have channel dim).
Actually, we can automatically adjust channel dim for most cases based on the spatial_size from meta_data. If advanced users really want to do some special logic, they can use AddChannel and AsChannelFirst directly.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
7 Steps to Setup Web Config Transformations - Bit-Wizards
Right-click it and press 'Add Config Transform'. This will create new config files for each build configuration created.
Read more >government of tamil nadu
It aims to create an inclusive, equitable, and universally ... mapping at every step of the transformation process in real time has to...
Read more >Vsx-lx53 Manual en | PDF | Ac Power Plugs And Sockets
Operating Instructions. audio/video multi-channel receiver. VSX-LX53 VSX-2020-K The exclamation point within an equilateral triangle is intended to alert ...
Read more >Manual Pioneer VSX-529 (page 54 of 66) (English) - Libble.eu
current speaker system or add new speakers). ... Auto – Adjust channel levels as the test tone moves. from speaker to speaker automatically....
Read more >REVISTË STUDIMORE - SHKENCORE INTERDISCIPLINARE
Shumë AP modern munden që auto-adjust channel në interface. ... where a large number of crimes are analyzed and the data is transformed...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Perfect, thanks!
Hi @rijobro ,
Yes, because all the data in MONAI should be
channel_firstand you can get theoriginal_channel_dimfrom meta dict. Then I think you can restore the original channel dim or remove channel dim, right?Thanks.