Skip to content

Commit

Permalink
Deployed to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 11, 2024
1 parent f75813c commit 72b468c
Show file tree
Hide file tree
Showing 519 changed files with 1,099 additions and 1,101 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
print(f'estimated noise standard deviation = {sigma_est}')

patch_kw = dict(
patch_size=5,
patch_distance=6,
channel_axis=-1, # 5x5 patches # 13x13 search area
patch_size=5, # 5x5 patches
patch_distance=6, # 13x13 search area
channel_axis=-1,
)

# slow algorithm
Expand Down
Binary file modified dev/_downloads/0168c074c64f3fe8cc1e520a58fb63cb/plot_canny.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/033d6895a1a08414963075f774caa532/plot_3d.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/0c5649869d39bc8676a19a91ce067e2e/plot_text.zip
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/0e6c07e10b0163761c59f6f33b24582a/plot_rescale.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/1ce9601465a93c12050206358d788b5d/plot_ncut.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/208368b72ece6d6226f254627eb98bb1/plot_entropy.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/32086750ef1a048f08876bf634f91311/plot_ransac.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/3a9737d8fb835655a7befb73ff997733/plot_rag.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/4569da894c811832eede8285f08e6b03/plot_blob.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/4b810083fa4745f741f2b20e2c2e86ba/plot_inpaint.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"outputs": [],
"source": [
"import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom skimage import data, img_as_float\nfrom skimage.restoration import denoise_nl_means, estimate_sigma\nfrom skimage.metrics import peak_signal_noise_ratio\nfrom skimage.util import random_noise\n\n\nastro = img_as_float(data.astronaut())\nastro = astro[30:180, 150:300]\n\nsigma = 0.08\nnoisy = random_noise(astro, var=sigma**2)\n\n# estimate the noise standard deviation from the noisy image\nsigma_est = np.mean(estimate_sigma(noisy, channel_axis=-1))\nprint(f'estimated noise standard deviation = {sigma_est}')\n\npatch_kw = dict(\n patch_size=5,\n patch_distance=6,\n channel_axis=-1, # 5x5 patches # 13x13 search area\n)\n\n# slow algorithm\ndenoise = denoise_nl_means(noisy, h=1.15 * sigma_est, fast_mode=False, **patch_kw)\n\n# slow algorithm, sigma provided\ndenoise2 = denoise_nl_means(\n noisy, h=0.8 * sigma_est, sigma=sigma_est, fast_mode=False, **patch_kw\n)\n\n# fast algorithm\ndenoise_fast = denoise_nl_means(noisy, h=0.8 * sigma_est, fast_mode=True, **patch_kw)\n\n# fast algorithm, sigma provided\ndenoise2_fast = denoise_nl_means(\n noisy, h=0.6 * sigma_est, sigma=sigma_est, fast_mode=True, **patch_kw\n)\n\nfig, ax = plt.subplots(nrows=2, ncols=3, figsize=(8, 6), sharex=True, sharey=True)\n\nax[0, 0].imshow(noisy)\nax[0, 0].axis('off')\nax[0, 0].set_title('noisy')\nax[0, 1].imshow(denoise)\nax[0, 1].axis('off')\nax[0, 1].set_title('non-local means\\n(slow)')\nax[0, 2].imshow(denoise2)\nax[0, 2].axis('off')\nax[0, 2].set_title('non-local means\\n(slow, using $\\\\sigma_{est}$)')\nax[1, 0].imshow(astro)\nax[1, 0].axis('off')\nax[1, 0].set_title('original\\n(noise free)')\nax[1, 1].imshow(denoise_fast)\nax[1, 1].axis('off')\nax[1, 1].set_title('non-local means\\n(fast)')\nax[1, 2].imshow(denoise2_fast)\nax[1, 2].axis('off')\nax[1, 2].set_title('non-local means\\n(fast, using $\\\\sigma_{est}$)')\n\nfig.tight_layout()\n\n# print PSNR metric for each case\npsnr_noisy = peak_signal_noise_ratio(astro, noisy)\npsnr = peak_signal_noise_ratio(astro, denoise)\npsnr2 = peak_signal_noise_ratio(astro, denoise2)\npsnr_fast = peak_signal_noise_ratio(astro, denoise_fast)\npsnr2_fast = peak_signal_noise_ratio(astro, denoise2_fast)\n\nprint(f'PSNR (noisy) = {psnr_noisy:0.2f}')\nprint(f'PSNR (slow) = {psnr:0.2f}')\nprint(f'PSNR (slow, using sigma) = {psnr2:0.2f}')\nprint(f'PSNR (fast) = {psnr_fast:0.2f}')\nprint(f'PSNR (fast, using sigma) = {psnr2_fast:0.2f}')\n\nplt.show()"
"import numpy as np\nimport matplotlib.pyplot as plt\n\nfrom skimage import data, img_as_float\nfrom skimage.restoration import denoise_nl_means, estimate_sigma\nfrom skimage.metrics import peak_signal_noise_ratio\nfrom skimage.util import random_noise\n\n\nastro = img_as_float(data.astronaut())\nastro = astro[30:180, 150:300]\n\nsigma = 0.08\nnoisy = random_noise(astro, var=sigma**2)\n\n# estimate the noise standard deviation from the noisy image\nsigma_est = np.mean(estimate_sigma(noisy, channel_axis=-1))\nprint(f'estimated noise standard deviation = {sigma_est}')\n\npatch_kw = dict(\n patch_size=5, # 5x5 patches\n patch_distance=6, # 13x13 search area\n channel_axis=-1,\n)\n\n# slow algorithm\ndenoise = denoise_nl_means(noisy, h=1.15 * sigma_est, fast_mode=False, **patch_kw)\n\n# slow algorithm, sigma provided\ndenoise2 = denoise_nl_means(\n noisy, h=0.8 * sigma_est, sigma=sigma_est, fast_mode=False, **patch_kw\n)\n\n# fast algorithm\ndenoise_fast = denoise_nl_means(noisy, h=0.8 * sigma_est, fast_mode=True, **patch_kw)\n\n# fast algorithm, sigma provided\ndenoise2_fast = denoise_nl_means(\n noisy, h=0.6 * sigma_est, sigma=sigma_est, fast_mode=True, **patch_kw\n)\n\nfig, ax = plt.subplots(nrows=2, ncols=3, figsize=(8, 6), sharex=True, sharey=True)\n\nax[0, 0].imshow(noisy)\nax[0, 0].axis('off')\nax[0, 0].set_title('noisy')\nax[0, 1].imshow(denoise)\nax[0, 1].axis('off')\nax[0, 1].set_title('non-local means\\n(slow)')\nax[0, 2].imshow(denoise2)\nax[0, 2].axis('off')\nax[0, 2].set_title('non-local means\\n(slow, using $\\\\sigma_{est}$)')\nax[1, 0].imshow(astro)\nax[1, 0].axis('off')\nax[1, 0].set_title('original\\n(noise free)')\nax[1, 1].imshow(denoise_fast)\nax[1, 1].axis('off')\nax[1, 1].set_title('non-local means\\n(fast)')\nax[1, 2].imshow(denoise2_fast)\nax[1, 2].axis('off')\nax[1, 2].set_title('non-local means\\n(fast, using $\\\\sigma_{est}$)')\n\nfig.tight_layout()\n\n# print PSNR metric for each case\npsnr_noisy = peak_signal_noise_ratio(astro, noisy)\npsnr = peak_signal_noise_ratio(astro, denoise)\npsnr2 = peak_signal_noise_ratio(astro, denoise2)\npsnr_fast = peak_signal_noise_ratio(astro, denoise_fast)\npsnr2_fast = peak_signal_noise_ratio(astro, denoise2_fast)\n\nprint(f'PSNR (noisy) = {psnr_noisy:0.2f}')\nprint(f'PSNR (slow) = {psnr:0.2f}')\nprint(f'PSNR (slow, using sigma) = {psnr2:0.2f}')\nprint(f'PSNR (fast) = {psnr_fast:0.2f}')\nprint(f'PSNR (fast, using sigma) = {psnr2_fast:0.2f}')\n\nplt.show()"
]
}
],
Expand Down
Binary file modified dev/_downloads/532e1db6c6af5c100869c32c06110c9a/plot_window.zip
Binary file not shown.
Binary file modified dev/_downloads/53eeae12197045159a0e86c3bacf0358/plot_censure.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/6075c8a6cbf1a8e3b5dbfc01fb9d06cc/plot_label.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/62edb8001207ada4c1e265eba86bcdd0/plot_glcm.zip
Binary file not shown.
Binary file modified dev/_downloads/674a90c8172506dd6fffc92054bb5ade/plot_sift.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"outputs": [],
"source": [
"from skimage.morphology import erosion, dilation, opening, closing, white_tophat # noqa\nfrom skimage.morphology import black_tophat, skeletonize, convex_hull_image # noqa\nfrom skimage.morphology import disk # noqa\n\nfootprint = disk(6)\neroded = erosion(orig_phantom, footprint)\nplot_comparison(orig_phantom, eroded, 'erosion')"
"from skimage.morphology import erosion, dilation, opening, closing, white_tophat\nfrom skimage.morphology import black_tophat, skeletonize, convex_hull_image\nfrom skimage.morphology import disk\n\nfootprint = disk(6)\neroded = erosion(orig_phantom, footprint)\nplot_comparison(orig_phantom, eroded, 'erosion')"
]
},
{
Expand Down
Binary file modified dev/_downloads/7801e416fd9b72c58afb847742604ac2/plot_brief.zip
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/7865d6e33172cbb4bd46c79418979cd6/plot_hog.zip
Binary file not shown.
Binary file modified dev/_downloads/7a566f50617c6ab140b4d46d578c6902/plot_corner.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/7c7c62f5cd41b6afc276b861d4ec1006/plot_swirl.zip
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/7e8ec80e903bacdb16f36deb2adf71ee/plot_pyramid.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/83d5e47966dda1550e64077775fde340/plot_metrics.zip
Binary file not shown.
Binary file modified dev/_downloads/83dd6a6d533ca3e1c35ee0256b87c6fb/plot_extrema.zip
Binary file not shown.
Binary file modified dev/_downloads/84ac4bc63690861ad84ab1ab53ccb194/plot_ssim.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/8f7bc48549498a6d4660016a0035ab57/plot_daisy.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/95603ad6e142953ca5c7c92dba045f85/plot_shapes.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/97ed7bfe82f8a2bce81c76ada343c7e5/plot_tophat.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/9e38ae787a295633430a559303d658ae/plot_haar.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/b0acbedce68903b495f2b5d85289e7dc/plot_general.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/bfbeb781b8a850ba4db1456265dd3b9b/plot_orb.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/c603f562c73d038886703dfab0dda863/plot_polygon.zip
Binary file not shown.
Binary file modified dev/_downloads/c86219f61b7eaea8450f26c9cdd91930/plot_denoise.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/cc40fe83011603356316bafa866b0bdc/plot_gabor.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ def plot_comparison(original, filtered, filter_name):
# neighborhood. Below, we use ``disk`` to create a circular structuring
# element, which we use for most of the following examples.

from skimage.morphology import erosion, dilation, opening, closing, white_tophat # noqa
from skimage.morphology import black_tophat, skeletonize, convex_hull_image # noqa
from skimage.morphology import disk # noqa
from skimage.morphology import erosion, dilation, opening, closing, white_tophat
from skimage.morphology import black_tophat, skeletonize, convex_hull_image
from skimage.morphology import disk

footprint = disk(6)
eroded = erosion(orig_phantom, footprint)
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_downloads/e765934d1746bdc79b1de3d2574d1384/plot_dog.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified dev/_images/sphx_glr_plot_brief_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_brief_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_canny_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_canny_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_colocalization_metrics_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_colocalization_metrics_002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_colocalization_metrics_003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_colocalization_metrics_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_cycle_spinning_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_cycle_spinning_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_deconvolution_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_deconvolution_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_denoise_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_denoise_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_denoise_wavelet_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_denoise_wavelet_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_entropy_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_entropy_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_fisher_vector_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_fisher_vector_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_fundamental_matrix_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_fundamental_matrix_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_gabors_from_astronaut_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_gabors_from_astronaut_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_general_002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dev/_images/sphx_glr_plot_general_019.png
Binary file modified dev/_images/sphx_glr_plot_general_thumb.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_001.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_thumb.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_001.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_002.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_003.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_004.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_005.png
Binary file modified dev/_images/sphx_glr_plot_j_invariant_tutorial_thumb.png
Binary file modified dev/_images/sphx_glr_plot_line_hough_transform_002.png
Binary file modified dev/_images/sphx_glr_plot_masked_register_translation_001.png
Binary file modified dev/_images/sphx_glr_plot_masked_register_translation_thumb.png
Binary file modified dev/_images/sphx_glr_plot_ncut_001.png
Binary file modified dev/_images/sphx_glr_plot_ncut_thumb.png
Binary file modified dev/_images/sphx_glr_plot_nonlocal_means_001.png
Binary file modified dev/_images/sphx_glr_plot_nonlocal_means_thumb.png
Binary file modified dev/_images/sphx_glr_plot_orb_001.png
Binary file modified dev/_images/sphx_glr_plot_orb_thumb.png
Binary file modified dev/_images/sphx_glr_plot_random_shapes_001.png
Binary file modified dev/_images/sphx_glr_plot_random_shapes_thumb.png
Binary file modified dev/_images/sphx_glr_plot_random_walker_segmentation_001.png
Binary file modified dev/_images/sphx_glr_plot_random_walker_segmentation_thumb.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_002.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_003.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_015.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_016.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_017.png
Binary file modified dev/_images/sphx_glr_plot_rank_filters_019.png
Binary file modified dev/_images/sphx_glr_plot_ransac_001.png
Binary file modified dev/_images/sphx_glr_plot_ransac_002.png
Binary file modified dev/_images/sphx_glr_plot_ransac_thumb.png
Binary file modified dev/_images/sphx_glr_plot_regionprops_table_001.png
Binary file modified dev/_images/sphx_glr_plot_regionprops_table_002.png
Binary file modified dev/_images/sphx_glr_plot_regionprops_table_003.png
Binary file modified dev/_images/sphx_glr_plot_regionprops_table_thumb.png
Binary file modified dev/_images/sphx_glr_plot_restoration_001.png
Binary file modified dev/_images/sphx_glr_plot_restoration_thumb.png
Binary file modified dev/_images/sphx_glr_plot_shape_index_001.png
Binary file modified dev/_images/sphx_glr_plot_shape_index_thumb.png
Binary file modified dev/_images/sphx_glr_plot_sift_001.png
Binary file modified dev/_images/sphx_glr_plot_sift_thumb.png
Binary file modified dev/_images/sphx_glr_plot_skeleton_003.png
Binary file modified dev/_images/sphx_glr_plot_ssim_001.png
Binary file modified dev/_images/sphx_glr_plot_ssim_thumb.png
Binary file modified dev/_images/sphx_glr_plot_stitching_001.png
Binary file modified dev/_images/sphx_glr_plot_stitching_002.png
Binary file modified dev/_images/sphx_glr_plot_stitching_thumb.png
Binary file modified dev/_images/sphx_glr_plot_trainable_segmentation_001.png
Binary file modified dev/_images/sphx_glr_plot_trainable_segmentation_002.png
Binary file modified dev/_images/sphx_glr_plot_trainable_segmentation_003.png
Binary file modified dev/_images/sphx_glr_plot_trainable_segmentation_thumb.png
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ will not work either.
interactive(children=(IntSlider(value=34, description='plane', max=59), Output()), _dom_classes=('widget-interact',))

<function explore_slices.<locals>.display_slice at 0x7fc05c318e00>
<function explore_slices.<locals>.display_slice at 0x7fb9e2527560>



Expand Down Expand Up @@ -473,7 +473,7 @@ slices interactively.
interactive(children=(IntSlider(value=34, description='plane', max=59), Output()), _dom_classes=('widget-interact',))

<function explore_slices.<locals>.display_slice at 0x7fc05c5cad40>
<function explore_slices.<locals>.display_slice at 0x7fb9e1e02ca0>



Expand Down Expand Up @@ -584,7 +584,7 @@ Note that this works in a static HTML page!

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 7.300 seconds)
**Total running time of the script:** (0 minutes 7.367 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_3d_image_processing.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ The `imshow` function can display both grayscale and RGB(A) 2D images.
Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers). Got range [64..4095].
<matplotlib.image.AxesImage object at 0x7fc05c3f5280>
<matplotlib.image.AxesImage object at 0x7fb9e0dea690>
Expand Down Expand Up @@ -381,7 +381,7 @@ The biologist's eye can spot that the two bright blobs (best seen in
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 6.767 seconds)
**Total running time of the script:** (0 minutes 7.079 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_3d_interaction.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ we would get the pancake situation.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.275 seconds)
**Total running time of the script:** (0 minutes 1.312 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_3d_structure_tensor.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ labeled individually.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.506 seconds)
**Total running time of the script:** (0 minutes 1.519 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_coins_segmentation.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ much lower than the overlap coefficient.
.. code-block:: none
np.float64(0.21862557722187426)
np.float64(0.1875424832294315)
Expand Down Expand Up @@ -281,7 +281,7 @@ would give us a good measure of how strong the association is.

.. code-block:: none
PCC: 0.864, p-val: 0
PCC: 0.857, p-val: 0
Expand Down Expand Up @@ -309,7 +309,7 @@ case.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.369 seconds)
**Total running time of the script:** (0 minutes 1.199 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_colocalization_metrics.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ the opening processing step, when removing fine-grained features.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 17.218 seconds)
**Total running time of the script:** (0 minutes 17.853 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_cornea_spot_inpainting.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ using `OpenCV train cascade utility
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 0.338 seconds)
**Total running time of the script:** (0 minutes 0.341 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_face_detection.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ time points, and then becomes roughly constant.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.731 seconds)
**Total running time of the script:** (0 minutes 1.752 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_fluorescence_nuclear_envelope.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,15 +282,15 @@ Once the features are extracted, we can train and test a new classifier.

.. code-block:: none
Computing the full feature set took 33.196s, plus 1.654s training, for an AUC of 1.00. Computing the restricted feature set took 0.099s, plus 1.370s training, for an AUC of 1.00.
Computing the full feature set took 34.228s, plus 1.642s training, for an AUC of 1.00. Computing the restricted feature set took 0.098s, plus 1.375s training, for an AUC of 1.00.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 39.101 seconds)
**Total running time of the script:** (0 minutes 39.835 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_haar_extraction_selection_classification.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ cells in this sample. Therefore, we estimate the mitotic index to be:
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.994 seconds)
**Total running time of the script:** (0 minutes 2.006 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_human_mitosis.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Blend

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.026 seconds)
**Total running time of the script:** (0 minutes 2.023 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_image_comparison.py:
Expand Down
10 changes: 5 additions & 5 deletions dev/_sources/auto_examples/applications/plot_morphology.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ functions only work on gray-scale or binary images, so we set ``as_gray=True``.
.. code-block:: none
<matplotlib.image.AxesImage object at 0x7fc05ec94740>
<matplotlib.image.AxesImage object at 0x7fb9e13f1280>
Expand Down Expand Up @@ -117,9 +117,9 @@ element, which we use for most of the following examples.
.. code-block:: Python
from skimage.morphology import erosion, dilation, opening, closing, white_tophat # noqa
from skimage.morphology import black_tophat, skeletonize, convex_hull_image # noqa
from skimage.morphology import disk # noqa
from skimage.morphology import erosion, dilation, opening, closing, white_tophat
from skimage.morphology import black_tophat, skeletonize, convex_hull_image
from skimage.morphology import disk
footprint = disk(6)
eroded = erosion(orig_phantom, footprint)
Expand Down Expand Up @@ -464,7 +464,7 @@ Additional Resources
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.363 seconds)
**Total running time of the script:** (0 minutes 1.383 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_morphology.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ to the position of the centroid!

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 59.998 seconds)
**Total running time of the script:** (1 minutes 1.434 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_pixel_graphs.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ on increasing image size:

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 40.005 seconds)
**Total running time of the script:** (0 minutes 41.120 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_rank_filters.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ polynomial to the scatter plot. The velocity is the first-order coefficient.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.586 seconds)
**Total running time of the script:** (0 minutes 2.499 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_solidification_tracking.py:
Expand Down
2 changes: 1 addition & 1 deletion dev/_sources/auto_examples/applications/plot_text.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ just wants to write onto the image, this step is not necessary.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 0.796 seconds)
**Total running time of the script:** (0 minutes 0.798 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_text.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ The example compares the local threshold with the global threshold.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.933 seconds)
**Total running time of the script:** (0 minutes 2.988 seconds)


.. _sphx_glr_download_auto_examples_applications_plot_thresholding_guide.py:
Expand Down
40 changes: 20 additions & 20 deletions dev/_sources/auto_examples/applications/sg_execution_times.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Computation times
=================
**03:08.307** total execution time for 17 files **from auto_examples/applications**:
**03:12.508** total execution time for 17 files **from auto_examples/applications**:

.. container::

Expand All @@ -33,53 +33,53 @@ Computation times
- Time
- Mem (MB)
* - :ref:`sphx_glr_auto_examples_applications_plot_pixel_graphs.py` (``plot_pixel_graphs.py``)
- 00:59.998
- 01:01.434
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_rank_filters.py` (``plot_rank_filters.py``)
- 00:40.005
- 00:41.120
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_haar_extraction_selection_classification.py` (``plot_haar_extraction_selection_classification.py``)
- 00:39.101
- 00:39.835
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_cornea_spot_inpainting.py` (``plot_cornea_spot_inpainting.py``)
- 00:17.218
- 00:17.853
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_3d_image_processing.py` (``plot_3d_image_processing.py``)
- 00:07.300
- 00:07.367
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_3d_interaction.py` (``plot_3d_interaction.py``)
- 00:06.767
- 00:07.079
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_thresholding_guide.py` (``plot_thresholding_guide.py``)
- 00:02.933
- 00:02.988
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_solidification_tracking.py` (``plot_solidification_tracking.py``)
- 00:02.586
- 00:02.499
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_image_comparison.py` (``plot_image_comparison.py``)
- 00:02.026
- 00:02.023
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_human_mitosis.py` (``plot_human_mitosis.py``)
- 00:01.994
- 00:02.006
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_fluorescence_nuclear_envelope.py` (``plot_fluorescence_nuclear_envelope.py``)
- 00:01.731
- 00:01.752
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_coins_segmentation.py` (``plot_coins_segmentation.py``)
- 00:01.506
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_colocalization_metrics.py` (``plot_colocalization_metrics.py``)
- 00:01.369
- 00:01.519
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_morphology.py` (``plot_morphology.py``)
- 00:01.363
- 00:01.383
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_3d_structure_tensor.py` (``plot_3d_structure_tensor.py``)
- 00:01.275
- 00:01.312
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_colocalization_metrics.py` (``plot_colocalization_metrics.py``)
- 00:01.199
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_text.py` (``plot_text.py``)
- 00:00.796
- 00:00.798
- 0.0
* - :ref:`sphx_glr_auto_examples_applications_plot_face_detection.py` (``plot_face_detection.py``)
- 00:00.338
- 00:00.341
- 0.0
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ degraded version of it.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 13.411 seconds)
**Total running time of the script:** (0 minutes 13.522 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_adapt_hist_eq_3d.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Finally, we can use this handler with ``adapt_rgb`` just as before:

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.592 seconds)
**Total running time of the script:** (0 minutes 1.596 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_adapt_rgb.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ that fall within the 2nd and 98th percentiles [2]_.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 0.746 seconds)
**Total running time of the script:** (0 minutes 0.744 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_equalize.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ image for each channel.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.128 seconds)
**Total running time of the script:** (0 minutes 1.178 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_histogram_matching.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Now we can easily manipulate the hematoxylin and DAB channels:

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.260 seconds)
**Total running time of the script:** (0 minutes 1.265 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_ihc_color_separation.py:
Expand Down
Loading

0 comments on commit 72b468c

Please sign in to comment.