Dženan Zukić

Results 653 comments of Dženan Zukić

/azp run ITK.Linux /azp run ITK.Windows

/azp run ITK.Windows

/azp run ITK.macOS.Python

> AnatomicalOreination("LPS") construction and AnatomicalOrientation(OE::LPS).ToString() == "LPS" I would like to have this. This convenience did not exist within ITK proper before, so there is no need for some sort...

If you want, you can remove the string constructor. Is there another similarly convenient way to initialize it? Something like: ```cpp auto identityAO = AnatomicalOrientation::ToEnum("LPS"); AnatomicalOrientation ao(identityAO); ```

More generally,: ```cpp std::string toCode = "LPS"; auto aoEnum = AnatomicalOrientation::ToEnum(toCode); AnatomicalOrientation ao(aoEnum); ```

What is the status of this PR? I would like it to be finished/merged before it becomes stale, as PR revival usually involves extra effort.

I am fine with that. And that might even be better, to not hold up this PR.