Name | Icon |
---|---|
SuperLoadableModuleTemplate.png | ![]() |
CLIExtensionTemplate.png | ![]() |
ScriptedLoadableModuleTemplate.png | ![]() |
ScriptedLoadableExtensionTemplate.png | ![]() |
ScriptedSegmentEditorEffectExtensionTemplate.png | ![]() |
Segm |
View boost_fixup_rpath.sh
This file contains 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 )" |
View slicer_plot_data.py
This file contains 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: |
View FindQtModules.py
This file contains 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) |
View slicer-convertHtmlToPdf-snippet.py
This file contains 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()` |
View pytest-plugins-pip-installable-master.sh
This file contains 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. |
View 2020.07.21_Slicer-icons.md
View vtkITKTransformInverse.h
This file contains 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. |
View maker_layer_structures.py
This file contains 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
from allensdk.api.queries.rma_api import RmaApi | |
import allensdk.core.json_utilities as ju | |
all_structs = [] | |
root = RmaApi().model_query("Structure", criteria="[graph_id$eq1],[acronym$eqgrey]")[0] | |
all_structs.append(root) |
View dmctk-CMakeCache.txt
This file contains 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 is the CMakeCache file. | |
# For build in directory: /work/Slicer-build/DCMTK-build | |
# It was generated by CMake: /usr/bin/cmake | |
# You can edit this file to change values found and used by cmake. | |
# If you do not want to change any of the values, simply exit the editor. | |
# If you do want to change a value, simply edit, save, and exit the editor. | |
# The syntax for the file is as follows: | |
# KEY:TYPE=VALUE | |
# KEY is the name of a variable in the cache. | |
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. |
View CMakeLists.txt
This file contains 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
cmake_minimum_required(VERSION 3.12) | |
project(Test LANGUAGES CXX) | |
# launcher executable | |
set(CTKAppLauncher_EXECUTABLE ${CMAKE_CURRENT_BINARY_DIR}/fake_launcher_executable) | |
file(WRITE ${CTKAppLauncher_EXECUTABLE} "") | |
# application and executable name |
NewerOlder