• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.ExternalData/H03-May-2022-38,05737,397

.circleci/H23-Jul-2019-9492

CMake/H03-May-2022-7,3146,663

Documentation/H03-May-2022-40,06429,673

Examples/H03-May-2022-83,31928,793

Modules/H23-Jul-2019-2,713,2171,677,434

Testing/H23-Jul-2019-8,1146,305

Utilities/H23-Jul-2019-15,79211,141

Wrapping/H03-May-2022-15,6269,810

.clang-formatH A D23-Jul-20193 KiB109108

.editorconfigH A D23-Jul-2019307 2014

CODE_OF_CONDUCT.mdH A D23-Jul-201920.8 KiB433344

CONTRIBUTING.mdH A D23-Jul-201911.1 KiB353260

CTestConfig.cmakeH A D23-Jul-2019230 86

GettingStarted.mdH A D23-Jul-20191.3 KiB3323

LICENSEH A D23-Jul-201911.1 KiB203169

NOTICEH A D23-Jul-201949.3 KiB1,229871

README.mdH A D23-Jul-20193.9 KiB6952

README.md

1![ITK - The Insight Toolkit](Documentation/Art/itkBannerSmall.png)
2
3ITK: The Insight Toolkit
4========================
5
6[![GitHub release](https://img.shields.io/github/release/InsightSoftwareConsortium/ITK.svg)](https://github.com/InsightSoftwareConsortium/ITK/releases/latest)
7[![PyPI](https://img.shields.io/pypi/v/itk.svg)](https://pypi.python.org/pypi/itk)
8[![Wheels](https://img.shields.io/pypi/wheel/itk.svg)](https://pypi.org/project/itk)
9[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/InsightSoftwareConsortium/ITK/blob/master/LICENSE)
10
11| | C++ | Python |
12|:------:|:--------:|:--------:|
13| Linux | [![Build Status](https://dev.azure.com/itkrobotlinux/ITK.Linux/_apis/build/status/ITK.Linux?branchName=master)](https://dev.azure.com/itkrobotlinux/ITK.Linux/_build/latest?definitionId=2&branchName=master) | [![Build Status](https://dev.azure.com/itkrobotlinuxpython/ITK.Linux.Python/_apis/build/status/ITK.Linux.Python?branchName=master)](https://dev.azure.com/itkrobotlinuxpython/ITK.Linux.Python/_build/latest?definitionId=2&branchName=master) |
14| macOS | [![Build Status](https://dev.azure.com/itkrobotmacos/ITK.macOS/_apis/build/status/ITK.macOS?branchName=master)](https://dev.azure.com/itkrobotmacos/ITK.macOS/_build/latest?definitionId=2&branchName=master) | [![Build Status](https://dev.azure.com/itkrobotmacospython/ITK.macOS.Python/_apis/build/status/ITK.macOS.Python?branchName=master)](https://dev.azure.com/itkrobotmacospython/ITK.macOS.Python/_build/latest?definitionId=2&branchName=master) |
15| Windows | [![Build Status](https://dev.azure.com/itkrobotwindow/ITK.Windows/_apis/build/status/ITK.Windows?branchName=master)](https://dev.azure.com/itkrobotwindow/ITK.Windows/_build/latest?definitionId=2&branchName=master) | [![Build Status](https://dev.azure.com/itkrobotwindowpython/ITK.Windows.Python/_apis/build/status/ITK.Windows.Python?branchName=master)](https://dev.azure.com/itkrobotwindowpython/ITK.Windows.Python/_build/latest?definitionId=1) |
16| Linux (Code coverage)| [![Build Status](https://dev.azure.com/itkrobotbatch/ITK.Coverage/_apis/build/status/ITK.Coverage?branchName=master)](https://dev.azure.com/itkrobotbatch/ITK.Coverage/_build/latest?definitionId=2&branchName=master) | |
17
18Links
19-----
20
21* [Homepage](https://itk.org)
22* [Download](https://itk.org/ITK/resources/software.html)
23* [Discussion](https://discourse.itk.org/)
24* [Software Guide](https://itk.org/ITKSoftwareGuide/html/)
25* [Help](https://itk.org/ITK/help/help.html)
26* [Examples](https://itk.org/ITKExamples/)
27* [Issue tracking](http://issues.itk.org/)
28* [Submit a patch](CONTRIBUTING.md)
29
30
31About
32-----
33
34The Insight Toolkit (ITK) is an open-source, cross-platform toolkit for
35N-dimensional scientific image processing, segmentation, and registration.
36Segmentation is the process of identifying and classifying data found in a
37digitally sampled representation. Typically the sampled representation is an
38image acquired from such medical instrumentation as CT or MRI scanners.
39Registration is the task of aligning or developing correspondences between
40data. For example, in the medical environment, a CT scan may be aligned with a
41MRI scan in order to combine the information contained in both.
42
43ITK is distributed in binary Python packages. To install:
44
45```
46pip install itk
47```
48
49or
50
51```
52conda install -c conda-forge itk
53```
54
55The cross-platform, C++ core of the toolkit may be built from source using
56[CMake](https://cmake.org).
57
58
59Copyright
60---------
61
62The [Insight Software Consortium](http://www.insightsoftwareconsortium.org)
63holds the copyright of this software. This is a non-profit entity that
64promotes the use of ITK for educational and research purposes. ITK is
65distributed under a license that enables use for both non-commercial and
66commercial applications. See [LICENSE](https://github.com/InsightSoftwareConsortium/ITK/blob/master/LICENSE)
67and [NOTICE](https://github.com/InsightSoftwareConsortium/ITK/blob/master/NOTICE)
68files for details.
69