Skip to content

Commit

Permalink
BUG: Extending the Toolkit filename
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed May 30, 2018
1 parent d449716 commit 11012da
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
25 changes: 20 additions & 5 deletions 6_Extending_the_toolkit.ipynb → 6_Extending_the_Toolkit.ipynb
Expand Up @@ -153,7 +153,12 @@
" </div>\n",
"</div>\n",
"\n",
"http://www.insight-journal.org/browse/publication/985"
"- https://github.com/InsightSoftwareConsortium/ITKTextureFeatures\n",
"- http://www.insight-journal.org/browse/publication/985\n",
"\n",
"```\n",
"python -m pip install itk-texturefeatures\n",
"```"
]
},
{
Expand All @@ -166,14 +171,19 @@
"source": [
"## ITKUltrasound\n",
"\n",
"* High performance ultrasound B-Mode implementation based on the Insight Toolkit (ITK).\n",
"* High performance ultrasound image formation and analysis based on the Insight Toolkit (ITK).\n",
"* Introduction of an itk::StreamingResampleImageFilter.\n",
"<figure>\n",
" <img src=\"data/Ultrasound-B-mode.png\">\n",
" <img src=\"data/Ultrasound-B-mode.png\" width=600>\n",
" <figcaption>Fig1. Large, scan converted B-Mode image of anechoic spheres in a tissue mimicking ultrasound phantom. The image was processed without swapping to disk.</figcaption>\n",
"</figure>\n",
"\n",
"http://www.insight-journal.org/browse/publication/722"
"- https://github.com/KitwareMedical/ITKUltrasound\n",
"- http://www.insight-journal.org/browse/publication/722\n",
"\n",
"```\n",
"python -m pip install itk-ultrasound\n",
"```"
]
},
{
Expand All @@ -189,7 +199,12 @@
"* Multiresolution (MRA) analysis framework using isotropic and steerable wavelets in the frequency domain.\n",
"* Provides the backbone for state of the art filters for denoising, feature detection or phase analysis in N-dimension\n",
"\n",
"http://www.insight-journal.org/browse/publication/986"
"- https://github.com/InsightSoftwareConsortium/ITKIsotropicWavelets\n",
"- http://www.insight-journal.org/browse/publication/986\n",
"\n",
"```\n",
"python -m pip install itk-isotropicwavelets\n",
"```"
]
},
{
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.local
Expand Up @@ -2,12 +2,13 @@ FROM jupyter/scipy-notebook:1fbaef522f17
MAINTAINER Matt McCormick <matt.mccormick@kitware.com>

RUN conda install --yes --quiet -c damianavila82 rise
RUN python -m pip install itk
RUN python -m pip install itk itk-ultrasound itk-texturefeatures
RUN python -m pip install itkwidgets && \
python -m jupyter nbextension install --py --sys-prefix itkwidgets && \
python -m jupyter nbextension enable --py --sys-prefix itkwidgets
RUN mkdir -p $HOME/.jupyter && \
echo "c.NotebookApp.iopub_data_rate_limit=1e22" >> $HOME/.jupyter/jupyter_notebook_config.py
RUN python -m pip install cookiecutter

ADD data/kitware-logo-small.png /home/jovyan/.jupyter/custom/logo.png
ADD data/jupyter-custom.css /home/jovyan/.jupyter/custom/custom.css
Expand Down

0 comments on commit 11012da

Please sign in to comment.