ITK icon indicating copy to clipboard operation
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...

Results 369 ITK issues
Sort by recently updated
recently updated
newest added

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.

type:Documentation

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,...

type:Compiler
area:Core

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...

type:Bug
area:Registration

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...

type:Infrastructure
type:Testing
area:Core
area:Filtering
area:IO
area:Registration
type:Style
area:Numerics

### 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...

type:Compiler
type:Style

### 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...

type:Compiler

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...

type:Bug

### 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...

type:Enhancement

Follow-up to pull request https://github.com/InsightSoftwareConsortium/ITK/pull/3236 commit 47bce264791a53853020a3911dd94d060cfbd655 "ENH: Declare begin(), end() of FixedArray, Index, Offset, Size constexpr"

type:Infrastructure
type:Enhancement
type:Testing
area:Core

`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(); ```...

area:Python wrapping
type:Testing
area:Core
area:Filtering
area:IO
area:Registration
area:Segmentation
area:Numerics