| Name | Icon |
|---|---|
| SuperLoadableModuleTemplate.png | |
| CLIExtensionTemplate.png | ![]() |
| ScriptedLoadableModuleTemplate.png | |
| ScriptedLoadableExtensionTemplate.png | ![]() |
| ScriptedSegmentEditorEffectExtensionTemplate.png | ![]() |
| Segm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Andras | |
| Andruejol | |
| Aucoin | |
| Allowlist | |
| Arial | |
| Backend | |
| Blocklist | |
| Canaria | |
| Cancelling | |
| Cividis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2023 Jean-Christophe Fillion-Robin <jcfr@kitware.com> | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| #----------------------------------------------------------------------------- | |
| tag_name=collection-archives | |
| release_name=CollectionArchives | |
| git checkout --orphan=${tag_name} | |
| git rm -rf . | |
| #----------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2023 Jean-Christophe Fillion-Robin <jcfr@kitware.com> | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| import ast | |
| import argparse | |
| import errno | |
| import os | |
| import sys | |
| import astor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/bin/env bash | |
| # This script allows to patch the Boost libraries changing the occurences of `@rpath` | |
| # back to a full path specific to this dashboard. | |
| # | |
| # This is currently required by Slicer macOS packaging infrastructure. | |
| set -euo pipefail | |
| SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To try this example, save this to a file slicer_plot_data.py, then execute Slicer from the command line | |
| # with the arguments `--python-script slicer_plot_data.py`. | |
| import qt | |
| import vtk | |
| import slicer | |
| class SlicerPlotData: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| This executable allows to find all Qt modules referenced by a set of C++ source files. | |
| A Qt module (e.g QtNetwork) aggregates together a collection of Qt classes and is | |
| associated with a set of public and private headers. | |
| For example, to select multiple files and identify associated Qt modules: | |
| QT_INCLUDE_DIR=/path/to/Qt5.15.2/5.15.2/gcc_64/include | |
| python FindQtModules.py $QT_INCLUDE_DIR $(find /path/to/Awesome/Lib/ -type f) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @staticmethod | |
| def convertHtmlToPdf(htmlFilePath, pdfFilePath): | |
| """ | |
| Convert HTML file to PDF. | |
| It returns the tuple ``(success, errorString)``. | |
| .. note:: | |
| Conversion from HTML to PDF is performed using :func:`slicer.qSlicerWebWidget.printToPdf()` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| REPO=git@github.com:jcfr/pytest-plugins.git | |
| #UPSTREAM_REPO=git://github.com/manahl/pytest-plugins.git | |
| UPSTREAM_REPO=$REPO | |
| UPSTREAM_BRANCH=fix-virtualenv-installed-package-on-windows | |
| PACKAGES="pytest-virtualenv" | |
| # Since the project `pytest-plugins` contains multiple independent | |
| # python projects, it is not directly pip-installable. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // PR#1096 | |
| // https://github.com/Slicer/Slicer/pull/1096/commits/5d8cce93acfcd9504e98cb318e1ddff92afea723#diff-685fe5dc92e213efacb56c685635f8a7 | |
| /*========================================================================= | |
| Program: Visualization Toolkit | |
| Module: $RCSfile: vtkITKTransformInverse.h,v $ | |
| Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen | |
| All rights reserved. | |
| See Copyright.txt or http://www.kitware.com/Copyright.htm for details. |


