ITK
ITK copied to clipboard
Insight Toolkit (ITK) -- Official Repository. ITK builds on a proven, spatially-oriented architecture for processing, segmentation, and registration of scientific images in two, three, or more dimens...
Clarify how ITK relates AI. Explain how ITK is commonly used in AI analysis and how it complements neural network libraries like PyTorch or MONAI.
Officially, we may not assume that `ptrdiff_t` and `size_t` are defined in the global namespace. ---- Motivation: Both `ptrdiff_t` and `size_t` are already commonly being used inside the `itk` namespace,...
Found with thread sanitizer (TSan) running the `itkANTSNeighborhoodCorrelationImageToImageRegistrationTest` unit test. There was already a `m_ANTSAssociateOnceFlag` flag for use with `std::call_once`, so I just used that in this place too (it's...
The use of (void)varname was a mechanism to silence compiler warnings prior to universal language support in c++11 for the [[maybe_unused]] attribute specifier. ## PR Checklist - [x] No [API...
### Description Allowing users to specify formatting strings at runtime is a well known exploitable code security vulnerability. We currently suppress these warnings, but it would be better to re-write...
### Description Hi, We develop a plugin for Fiji that is called Fijiyama. As this tool switches between Java /Fiji and ITK, we developed a first draft of a class...
I have compiled itk and rtk and created a small example in visual studio, but I got an error,both in debug and release. What's the reason?The version I use is...
### Description Currently, the test image and its regression baseline must have the exact same size, as per: https://github.com/InsightSoftwareConsortium/ITK/blob/e41c4583c03c45fda7334111041aabb4b74e8465/Modules/Core/TestKernel/src/itkTestDriverInclude.cxx#L508-L514 Which causes this sort of failure: ```log The size of the...
Follow-up to pull request https://github.com/InsightSoftwareConsortium/ITK/pull/3236 commit 47bce264791a53853020a3911dd94d060cfbd655 "ENH: Declare begin(), end() of FixedArray, Index, Offset, Size constexpr"
`itk::Image::CreateInitialized` aims to simplify creating an image with an allocated buffer of zero-initialized pixels. Replaced more than sixty cases of code like: ```cpp auto image = ImageType::New(); image->SetRegions(region); image->AllocateInitialized(); ```...