InsightSoftwareConsortium / ITK

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 dimensions.
https://itk.org
Apache License 2.0
1.4k stars 662 forks source link

Replace `if (x > a[i]) x = a[i]` with `x = std::min(x, a[i])`, and `if (x < a[i]) x = a[i]` with `x = std::max(x, a[i])` #4480

Closed N-Dekker closed 6 months ago

N-Dekker commented 6 months ago