{
"cells": [
{
"cell_type": "markdown",
"id": "dca63629",
"metadata": {},
"source": [
"# stackview\n",
"Interactive image stack viewing in jupyter notebooks based on \n",
"[ipycanvas](https://ipycanvas.readthedocs.io/) and \n",
"[ipywidgets](https://ipywidgets.readthedocs.io/en/latest/)."
]
},
{
"cell_type": "markdown",
"id": "79a8abbc",
"metadata": {},
"source": [
"## Usage\n",
"You can use `stackview` from within jupyter notebooks as shown below.\n",
"\n",
"Starting point is a 3D image dataset provided as numpy array. "
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "ca154076",
"metadata": {},
"outputs": [],
"source": [
"import stackview\n",
"\n",
"import numpy as np\n",
"from skimage.io import imread\n",
"from skimage.filters import gaussian"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "21067204",
"metadata": {},
"outputs": [],
"source": [
"image = imread('https://github.com/haesleinhuepf/stackview/blob/main/docs/data/Haase_MRT_tfl3d1.tif?raw=true', plugin='tifffile')"
]
},
{
"cell_type": "markdown",
"id": "42963cad",
"metadata": {},
"source": [
"## Slice\n",
"You can then view it slice-by-slice:"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "4cf3f9d3",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "40335a6b237248d1a178187dbbd924db",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlider(value=60, des…"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.slice(image, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "39843d28-d31e-46a7-bc33-5cf3d8cabd6e",
"metadata": {},
"source": [
"# Insight\n",
"You can also get a static view using a maximum-intensity projection with additional information."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "be919845-f8fc-4dd6-8b0b-6e729c9d0fc2",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"\n",
" \n",
" | \n",
"\n",
"\n",
"\n",
"| shape | (120, 160, 160) | \n",
"| dtype | uint16 | \n",
"| size | 5.9 MB | \n",
"| min | 0 | | max | 65535 | \n",
" \n",
" \n",
" | \n",
"
\n",
"
"
],
"text/plain": [
"StackViewNDArray([[[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 992, ..., 1221, 1297, 0],\n",
" [ 0, 0, 1526, ..., 1144, 2213, 0],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]],\n",
"\n",
" [[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 2213, ..., 916, 610, 0],\n",
" [ 0, 0, 2365, ..., 1297, 1068, 0],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]],\n",
"\n",
" [[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 1068, ..., 153, 381, 0],\n",
" [ 0, 0, 1526, ..., 305, 458, 0],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]],\n",
"\n",
" ...,\n",
"\n",
" [[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 610, ..., 763, 1068, 534],\n",
" [ 0, 0, 305, ..., 1221, 381, 610],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]],\n",
"\n",
" [[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 229, ..., 763, 916, 0],\n",
" [ 0, 0, 458, ..., 839, 992, 0],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]],\n",
"\n",
" [[ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 1144, ..., 687, 1450, 0],\n",
" [ 0, 0, 381, ..., 1068, 763, 0],\n",
" ...,\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0],\n",
" [ 0, 0, 0, ..., 0, 0, 0]]],\n",
" dtype=uint16)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.insight(image)"
]
},
{
"cell_type": "markdown",
"id": "d592fd3b-7883-4c0a-81cb-d203b80e00b1",
"metadata": {},
"source": [
"# Annotate\n",
"To draw label images, use `annotate`."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "5c731a2b-c875-497c-a5c0-4e76e1f3e706",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d54a887339254b509639cf0979c5acfd",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), VBox(chi…"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import numpy as np\n",
"labels = np.zeros(image.shape).astype(np.uint32)\n",
"\n",
"stackview.annotate(image, labels)"
]
},
{
"cell_type": "markdown",
"id": "df4bb7be",
"metadata": {},
"source": [
"## Picker\n",
"To read the intensity of pixels where the mouse is moving, use the picker."
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "64731189",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8b56df7f88364facb4085bdb6da8bb87",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlider(value=60, des…"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.picker(image, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "2e552f7e",
"metadata": {},
"source": [
"## Orthogonal\n",
"Orthogonal views are also available:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "42dd2614",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bb3bf9b859b844fabc42ed5543f0aa0d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlide…"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.orthogonal(image, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "634f0860",
"metadata": {},
"source": [
"## Curtain\n",
"For visualization of an original image in combination with a processed version, a curtain view may be helpful:"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "d4ee961e",
"metadata": {},
"outputs": [],
"source": [
"modified_image = image.max() - image"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "ab1dc868",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bb8a6f240a0940f491e2ae50cf9afcc0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlider(value=60, des…"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.curtain(image, modified_image, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "dbd725c9-5867-4e47-8b7c-b7006fd2982b",
"metadata": {},
"source": [
"One can also use the curtain to visualize semantic segmentation results as label images."
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "e421b46f-f738-4048-9a77-09dc54070715",
"metadata": {},
"outputs": [],
"source": [
"labels = (image > 5000)*1 + (image > 15000)*1 + (image > 30000)*1"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "24f8a418-b261-4a6e-97de-025046326a13",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bdcb9b1ed464484685f47cbb6f5a67b9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlider(value=60, des…"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.curtain(image, labels, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "ffda520d-0451-499e-a5e7-08b6a1220d1e",
"metadata": {},
"source": [
"The curtain can also be partially transparent using the alpha value."
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "91a89968-9f2c-48bb-abfa-d6e123dcf51d",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "64ca61e1875c49f68832b51610501abb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=160, width=160),)),)), IntSlider(value=60, des…"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.curtain(image, labels, continuous_update=True, alpha=0.3)"
]
},
{
"cell_type": "markdown",
"id": "187cf539",
"metadata": {},
"source": [
"The curtain also works with 2D data"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "2f21ee1d",
"metadata": {},
"outputs": [],
"source": [
"slice_image = imread('https://github.com/haesleinhuepf/stackview/blob/main/docs/data/blobs.tif?raw=true', plugin='tifffile')"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "bd7d1317",
"metadata": {},
"outputs": [],
"source": [
"from skimage.filters import threshold_otsu\n",
"binary = (slice_image > threshold_otsu(slice_image))"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "652721ec-6dfd-4518-9554-a3335ef27c6a",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"((254, 256), (254, 256))"
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"binary.shape, slice_image.shape"
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "6b5dd31a",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fcac65df800e44f481e32f410684c0ec",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=254, width=256),)),)), IntSlider(value=127, de…"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.curtain(slice_image, binary, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "c15807a9-2de5-45e0-93bd-e0e952da0fce",
"metadata": {},
"source": [
"Also label images are supported. Images are shown as labels in case their pixel type is (unsigned) integer 32-bit or 32-bit."
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "f39bacd7-6ca3-4c28-bb4f-25d2251b0c9a",
"metadata": {},
"outputs": [],
"source": [
"from skimage.measure import label\n",
"labels = label(binary)"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "1ad031f5-ab80-473c-95c5-12bd08256d56",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3c6375367b6a4727aa04fcef47080132",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=254, width=256),)),)), IntSlider(value=127, de…"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.curtain(slice_image, labels, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "4767b2f9",
"metadata": {},
"source": [
"## Side-by-side\n",
"A side-by-side view of two stacks is also available. It might be useful for colocalization visualization or showing subsequent time points of a timelapse."
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "7bf91429",
"metadata": {},
"outputs": [],
"source": [
"image_stack = imread('https://github.com/haesleinhuepf/stackview/blob/main/docs/data/CalibZAPWfixed_000154_max.tif?raw=true', plugin='tifffile').swapaxes(1,2)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "5ad9ebf9",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "71d09d70b40f4edf96251bab38a39a50",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(HBox(children=(VBox(children=(ImageWidget(height=235, width=389),)),)), HBox(chi…"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.side_by_side(image_stack[1:], image_stack[:-1], continuous_update=True, display_width=300)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "97a16fec-21a0-4aa6-8dee-660ce345238e",
"metadata": {},
"outputs": [],
"source": [
"labels_stack = np.asarray([label(image > 100) for image in image_stack])"
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "b948942f-b1c1-474f-a8cb-cf3f104b65bf",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2d6fd9d7c7f346bd9687a2d6c547b3f0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(HBox(children=(VBox(children=(ImageWidget(height=389, width=235),)),)), HBox(chi…"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.side_by_side(image_stack, labels_stack, continuous_update=True, display_width=300)"
]
},
{
"cell_type": "markdown",
"id": "18ea8070",
"metadata": {},
"source": [
"## Interact\n",
"You can also use `interact` to explore parameters of some supported functions that process images, e.g. from [scikit-image](https://scikit-image.org/):"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "41b75598",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8ad760ab5efd4a69ba222323154776e2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(interactive(children=(IntSlider(value=0, continuous_update=False, description='footprint'), Out…"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from skimage.filters.rank import maximum\n",
"stackview.interact(maximum, slice_image)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "ba9bfc67",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a95225c482584dddb1da6ca9d8f1efe7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(interactive(children=(FloatSlider(value=1.0, continuous_update=False, description='sigma', max=…"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from skimage.filters import gaussian\n",
"stackview.interact(gaussian, slice_image)"
]
},
{
"cell_type": "markdown",
"id": "47751ce0",
"metadata": {},
"source": [
"This might be interesting for custom functions executing image processing workflows."
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "11f6e31e",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6490789da4b44fcc89793dc0ef11843f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(interactive(children=(FloatSlider(value=1.0, description='sigma', max=25.0, step=1.0), Checkbox…"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from skimage.filters import gaussian, threshold_otsu, sobel\n",
"def my_custom_code(image, sigma:float = 1, show_labels: bool = True):\n",
" sigma = abs(sigma)\n",
" blurred_image = gaussian(image, sigma=sigma)\n",
" binary_image = blurred_image > threshold_otsu(blurred_image)\n",
" edge_image = sobel(binary_image)\n",
" \n",
" if show_labels:\n",
" return label(binary_image)\n",
" else:\n",
" return edge_image * 255 + image \n",
"\n",
"stackview.interact(my_custom_code, slice_image, continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "51ef6a3f",
"metadata": {},
"source": [
"If you want to configure the range of a slider explicitly, you need to hand over the [ipywidgets slider](https://ipywidgets.readthedocs.io/en/latest/examples/Widget%20List.html#FloatSlider) as default value:"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "8abc8e06",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c8f6010577574d8fbefeec23a2f9c983",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(interactive(children=(FloatSlider(value=15.0, description='sigma'), Output()), _dom_classes=('w…"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from skimage.filters import gaussian\n",
"from ipywidgets import FloatSlider\n",
"stackview.interact(gaussian, slice_image, sigma=FloatSlider(min=0, max=100, value=15), continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "a4e4c0b2-04e1-48bf-a1a9-70480fbece99",
"metadata": {},
"source": [
"## Assist\n",
"The `stackview.assist()` function can guide you through all imported (and supported) image processing functions."
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "f2cfc7b6-c868-4e40-8e60-2f9cbde70b50",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d93b936ce41d48809e4a62359375fa54",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(Text(value='', description='Search', placeholder='Type here to search'), Dropdown(description='…"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"stackview.assist(context=globals(), continuous_update=True)"
]
},
{
"cell_type": "markdown",
"id": "077b7106",
"metadata": {},
"source": [
"## Some more tests with silly images"
]
},
{
"cell_type": "code",
"execution_count": 28,
"id": "9cd2f2e5",
"metadata": {
"tags": []
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "af21156770e649ab947b5fc4021255fa",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=100, width=100),)),)), IntSlider(value=50, con…"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import numpy as np\n",
"silly_image = np.zeros((100, 100))\n",
"silly_image[:,50:] = 1\n",
"silly_image[50:] = silly_image[50:] + 2\n",
"\n",
"stackview.picker(silly_image.astype(np.uint32))"
]
},
{
"cell_type": "code",
"execution_count": 29,
"id": "c1c350b5",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1e031cfb76544b66b58c75bb78ba6c7b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"VBox(children=(HBox(children=(VBox(children=(ImageWidget(height=60, width=60),)),)), IntSlider(value=1, contin…"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"silly_image = np.zeros((3, 3))\n",
"silly_image[:,1:] = 1\n",
"silly_image[1:] = silly_image[1:] + 2\n",
"\n",
"stackview.picker(silly_image.astype(np.uint32), zoom_factor=20)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "d8a7a29d-0fe9-445b-99f7-41974cf61ea9",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.15"
},
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"0062bc95b437437d83468393fa36c3b4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"00d1543918af4a9099b2aa15006663bb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a54ec3c9584b477bb199ea9dd5646f83",
"style": "IPY_MODEL_0d8863ee440a4e8197b3ae5b3d725285",
"value": "gaussian(..., sigma=1.0)"
}
},
"011ef6288bd64d4ba1d58fd9e5a761c4": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_1d8edd2a11c742a38e43f6e38a40358b"
}
},
"0146cbf285504863925def4f22cc0960": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_5e44bc61e7874b8f826ee88e1b4e5454",
"style": "IPY_MODEL_d6c198455f6e4b07b84d43649a6e64e4"
}
},
"0299ba3fa3294e6694e3569af7a5084f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"032bf642a8bd454ca3ede2a9611845ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"03591d61ea104834a2939d149e3f4a7c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_3c4b09a8c52545db9d30edf095b4d6cf"
],
"layout": "IPY_MODEL_8e2681c4aaae446d90530474396b266b"
}
},
"052ab6eeaa954099bac78ef8a409f14b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"05912c21290a48f8aee03e5af828f6d1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_870c0b2020a546fd923bb1e1ef02d50e",
"IPY_MODEL_a0b0c88c9db2422dac16aed9f05c74cd"
],
"layout": "IPY_MODEL_8a3602adfb5641d0bfa55ca850f10b26"
}
},
"05a8dcbf1fea40399e329b404876098a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_988f6094a03643d4b3b59990e88d124d",
"IPY_MODEL_ec2f15f55b1b409986c44bf9ad0073a0"
],
"layout": "IPY_MODEL_b5db591a7e6a4729846d331f1dd55f9f"
}
},
"07472f787d394f1fbc22a0499f706936": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ee3fd99663274ef9a025f39038f5a382"
],
"layout": "IPY_MODEL_4f089a11f37d40eeabc8f2df8670dff1"
}
},
"07d7ee3f1d2d40b38bc9fb740967f461": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_count": 1,
"_view_module_version": "^0.13",
"height": 100,
"layout": "IPY_MODEL_74fac521fb604c918e3370bb425ef164",
"width": 100
}
},
"07ff7eb7a0954e7087453ceba6bc1927": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"0864edc35e7040288cc55ca77b26a44d": {
"model_module": "ipyevents",
"model_module_version": "2.0.1",
"model_name": "EventModel",
"state": {
"_supported_key_events": [
"keydown",
"keyup"
],
"_supported_mouse_events": [
"click",
"auxclick",
"dblclick",
"mouseenter",
"mouseleave",
"mousedown",
"mouseup",
"mousemove",
"wheel",
"contextmenu",
"dragstart",
"drag",
"dragend",
"dragenter",
"dragover",
"dragleave",
"drop"
],
"_supported_touch_events": [
"touchstart",
"touchend",
"touchmove",
"touchcancel"
],
"_view_module": "@jupyter-widgets/controls",
"source": "IPY_MODEL_30606f89140849d5911649986ae578ff",
"throttle_or_debounce": "",
"watched_events": [
"mousemove"
],
"xy_coordinate_system": ""
}
},
"089f090b363a404c80acf2fadb7e9cdd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_534f6d511bdf447eb2814c1aa04389ef",
"max": 119,
"style": "IPY_MODEL_885d6983fe724108b6057bf2c88dda03",
"value": 60
}
},
"0934c3dd87c74ae286f6d15d042b884d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_9dc64d78feb548ee9fe7513623d25bd1"
],
"layout": "IPY_MODEL_376f694cd65c48c1af671b8544f7bdcf"
}
},
"098fb63221ef4fd7a08a66c331ef0aa7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0aa8c5846d8e452e806ed35c22df31c8": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_count": 1,
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_9dd2a9041727458b9b70338a8d604198",
"width": 160
}
},
"0aa9d40269664a28bedececcac5aff4c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_513c0a4fb64f4344b00fddba69069e3f"
}
},
"0ab36f10c65642ef9eadfb8daaefcd0e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0ac84140126241d79289ffc5d24c7df8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_2af045c710fc40f6bdb33791142c3451",
"style": "IPY_MODEL_5c6e427639af4e09b9520c32624255eb",
"value": "Draw radius:"
}
},
"0b38757e8e044c15aced97ef0ee0d4c6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0b9653428e904d3094a18681dd957d45": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"layout": "IPY_MODEL_756a94c4b9364ebf99bbf726e4b6ee40",
"max": 25,
"style": "IPY_MODEL_8a9b688a68434d139e2a4c6d2395e637",
"value": 1
}
},
"0c18faa40a684e80a37c7cfc769d461c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_4ca9247583ce4700b8c4d0b01413ea78",
"IPY_MODEL_9d184cf9909444669f7e4124880729ea"
],
"layout": "IPY_MODEL_867f74a1d6c443878abadc7c6c76cbed"
}
},
"0d8863ee440a4e8197b3ae5b3d725285": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"0df42a2b8a91442386147653fdb18be2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"0ecb990487274ac090b61c1ac7a4deec": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_7da73ebc82894a81a009e6ac1724ca02",
"width": 256
}
},
"0f0f238cfc6d41d898c3992b0d9ba3c9": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_0f16ad9b82754718bac8bf4365fade19",
"width": 160
}
},
"0f16ad9b82754718bac8bf4365fade19": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"103b24277a87406a93e7d8601f20fb60": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_f63cf665f5c0469fb6df83bcf4897322",
"style": "IPY_MODEL_fb0870964f48454da253abfea44f5c5c",
"value": "label( label_image=no_image)"
}
},
"10456649027e4d6183df88bd67950f1c": {
"model_module": "ipyevents",
"model_module_version": "2.0.1",
"model_name": "EventModel",
"state": {
"_supported_key_events": [
"keydown",
"keyup"
],
"_supported_mouse_events": [
"click",
"auxclick",
"dblclick",
"mouseenter",
"mouseleave",
"mousedown",
"mouseup",
"mousemove",
"wheel",
"contextmenu",
"dragstart",
"drag",
"dragend",
"dragenter",
"dragover",
"dragleave",
"drop"
],
"_supported_touch_events": [
"touchstart",
"touchend",
"touchmove",
"touchcancel"
],
"_view_module": "@jupyter-widgets/controls",
"source": "IPY_MODEL_d54f6f7b8d194d348b5ef1bc115b36ca",
"throttle_or_debounce": "",
"watched_events": [
"mousemove"
],
"xy_coordinate_system": ""
}
},
"11c783515a8f4dadb77b17d9ae72fa36": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_7005621471554bf489ec0dd05a006ee2",
"IPY_MODEL_1dffd5f715c142449fddc30c7c33648a"
],
"layout": "IPY_MODEL_bf2a853dcb7c4a64a0ebdf9aa43964e8"
}
},
"11e18f9131ac4efa9e81fa16b6222e7a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_88061359ea0e4204b27ed3982645bbca"
],
"layout": "IPY_MODEL_75c6eb613cb946f7afdfdbb88ef5ae39"
}
},
"11f226286ce24b28bf2479da89c1668c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_92bee3df6a8d4a48ab5b2afe5302b426",
"IPY_MODEL_f08e2763d06c4eda8634b4fdcea9f717"
],
"layout": "IPY_MODEL_fe471884d6e047b2b677c5d00c4824d6"
}
},
"125123dd4c9c40e2b33cbaa0dafe6fa1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"12cb72aa82d84500b421e51a7fbf58c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"12ccaff7efc74800ba3de34beda9bc6d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"13313f384d404133bf82bf8ad4ac2863": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "Slice",
"layout": "IPY_MODEL_d14260a362e34be29808a7a197a15e06",
"max": 253,
"style": "IPY_MODEL_c22245efd1f14321ade84770ba39a0ed",
"value": 127
}
},
"139bc97ebdfd4cd6995c0b3a630ebd1c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_ef5cb4483e0b4c958f28d2c71c9a720f",
"max": 253,
"style": "IPY_MODEL_ff491939644a4929942cabf012a724c8",
"value": 127
}
},
"13c2be7393f848b085f08549fc64d62d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"14936242449742b9af05683e4768313f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5915441a826b44d4a8a2c20f034611b4"
],
"layout": "IPY_MODEL_fd1edc17b6b948c5bc7720d23db71487"
}
},
"14999435d739447ba0014750f152414d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"14a4777399e543a1ba03489ea36edbce": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TextModel",
"state": {
"description": "Search",
"layout": "IPY_MODEL_480693a2252b45c780516a0e5dde392c",
"placeholder": "Type here to search",
"style": "IPY_MODEL_d1a3e32e1b364355b66a72ff6d7f2b17"
}
},
"15a04762f2df44f99287ccc1ca13516d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b209cb1541db4de58be63ea2eb569aba",
"IPY_MODEL_103b24277a87406a93e7d8601f20fb60"
],
"layout": "IPY_MODEL_1a978348b9d54d9fa128345d23a6e623"
}
},
"15d2a014803a48439b10ab1d0fc0cd67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"15fbd421311342b0acf0640e58e08382": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1612304f8a984364b71dc6f13fb629f9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_1fab9f15eec04a76906e943eeda16430"
],
"layout": "IPY_MODEL_b4f2fc405ff6416482e4c2d1620c98fd"
}
},
"169c2961b83343bdb819c7d50f0ce734": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"16a05651b9ec4de98ebd9435c85728ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "-",
"layout": "IPY_MODEL_86b1121007c14538a81ce34e51b4a1c7",
"style": "IPY_MODEL_52106a84ea164d449a91f045ed9b9feb",
"tooltip": null
}
},
"16ce08b14fb643bbb6cef7f3f0feb157": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0c18faa40a684e80a37c7cfc769d461c",
"IPY_MODEL_1bd41ed355e94d1aa70230588f65c6de"
],
"layout": "IPY_MODEL_3e4ad2cb742a4d3b9f91ef61adac380b"
}
},
"17a2437cfde14966abfd1f2978a026cb": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_309bc67eb4104d66b6bc51ea75c13fb3"
}
},
"1854273de44b49dea15e03bdca22f1d2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"18a7777ef73b456aa8fdee3206d1331c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_3613acc0e50a4e64ac496c4b8326bd79",
"IPY_MODEL_e2400697577e4cf08e3fe30d049c7559",
"IPY_MODEL_0aa9d40269664a28bedececcac5aff4c"
],
"layout": "IPY_MODEL_a775dfcf12254c119b43d1a2041442e4"
}
},
"19b3881a1dc8448a99e7f2883be2f503": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"max_width": "30px",
"min_width": "10px"
}
},
"19c0ecec2d7243f8879909cdaeaf2389": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_45f486cafff2458f9c09f7e956d31570"
],
"layout": "IPY_MODEL_3ff914df3a064f80a2a1a31ef6313a29"
}
},
"19de66b645564354855d84a7baaa8fe5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "footprint",
"layout": "IPY_MODEL_fd7ec3035ac649dba8f646dc012585a0",
"style": "IPY_MODEL_57882a7d57e44f1190c84a9b7b57118f"
}
},
"1a978348b9d54d9fa128345d23a6e623": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"1ae62a3e047c4c89a61967d141d7a65f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1bd41ed355e94d1aa70230588f65c6de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a5ade47a8e3745b68e459195a67b248c",
"style": "IPY_MODEL_697f4e7a2f9c43d59a0b80ffb055af04",
"value": "np.genfromtxt( usemask=no_image)"
}
},
"1d1650985d7544df9e2430d32fd4cd79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_6c568045024742feb1e041a7bcac41b2",
"IPY_MODEL_2ac82202860f4be888001d9b60dcb8d7"
],
"layout": "IPY_MODEL_a53f8f75be614cb19500422ba7a7d51b"
}
},
"1d8edd2a11c742a38e43f6e38a40358b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1dffd5f715c142449fddc30c7c33648a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_927b82e99c874dceb2a0aa624d0d21d1"
}
},
"1e031cfb76544b66b58c75bb78ba6c7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e1e14dc449cd4e778ac7fd6985d29e29",
"IPY_MODEL_a1ab352edb2e4ccfbcd71410b501cf1e",
"IPY_MODEL_2566ccc763214f00a7244a7476d86db9"
],
"layout": "IPY_MODEL_dab00b457b1e4649a4df09e4539f4385"
}
},
"1e0b9c345d404c2baf0b3e2c840ba8f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"1e58ce32c0cc4cf09859237db5e024d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"description": "sigma",
"layout": "IPY_MODEL_81d2b8523bd6466f9d704cb300d21050",
"max": 25,
"style": "IPY_MODEL_4d6ce65301604efdbc0bbf2f1ed5b7f2",
"value": 1
}
},
"1f055e46b5bf4007bc7d0eb4a89f2c3a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "X",
"layout": "IPY_MODEL_56821eaa03d54050aab2f79efef20199",
"max": 159,
"style": "IPY_MODEL_63f3868860de416792c4b76a5eeb19e1",
"value": 80
}
},
"1fa2452fcc1f457993b5da4736c4f1d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"1fab9f15eec04a76906e943eeda16430": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_849a63885c59453aa9ccd23b93ca2e4c"
],
"layout": "IPY_MODEL_330cad0d53f44ba6b3065eb2fc545961"
}
},
"1fdffd9bd9b94c03a1d158c0dc1db17c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b3fd5615009545a1a36f1549d7f89a10"
],
"layout": "IPY_MODEL_975b46b3d6f0473bb284919275e3468d"
}
},
"206b7b5f9dd34763807bfa9cc2485718": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_c382ec7109964be5a1655d608c28be41"
}
},
"21e288222d9141099702e22cf169bb41": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_2c5601eea08d472888cfc6a1376fb1e3",
"max": 119,
"style": "IPY_MODEL_8b01d8cb5cf347b188e4f1a0f156aa22",
"value": 60
}
},
"2274a9ffa8c74c43a978615be92dff38": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"description": "sigma",
"layout": "IPY_MODEL_de44bbe5b1764b38bd0a281e7b97babf",
"step": 0.1,
"style": "IPY_MODEL_4f50f39f1a65401bb1960fa0d20d0b3b",
"value": 15
}
},
"23686b53a2ff420fba288edfb7c1939c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"238ca176e50249e5a9d04b24327eac1e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"249b4ff654f14963b4db8494e7e0a00a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"24c5ddfb5e9e4dffad1ea5ae7dcb4aec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_30606f89140849d5911649986ae578ff"
],
"layout": "IPY_MODEL_948c1d68fb5b43fda207771ad31ba30b"
}
},
"24cc87637eba451ca86aa8f5742519ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_28e63a6736d6438ba24c7ca1411c6d7a"
],
"layout": "IPY_MODEL_a2572b3179074d808c66942b77679e05"
}
},
"2559db38fe9f4989abd5c82ea02ce625": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"2566ccc763214f00a7244a7476d86db9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_494daad5bdc9421d91fd3ae2a2db28ed",
"style": "IPY_MODEL_aac591d3431c4b109619073ecc25bac9",
"value": "[]:"
}
},
"25706f38026c4310a00fc476d377dcf1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"25e22da39a7541c68e9d3e268b1234c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2603f58060c940c5a70e988b34b491e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "Slice",
"layout": "IPY_MODEL_a27da3e5eb174fb79747d36a4a30a753",
"max": 99,
"style": "IPY_MODEL_f6df7fb28a0748c18bc991e0f6fc7dec",
"value": 50
}
},
"26ec85cc493a4738bda325bd25596fcd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"276487b0a6a9415fbb0d755f66654d67": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"276f9c400e464987959add7e523f854d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"282dfafca1884f05a4c07627c3d69b85": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"28e63a6736d6438ba24c7ca1411c6d7a": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_4d62cff7e3054c3b897839a79c7ce553",
"width": 160
}
},
"2a6016d4e38142c38c72d66a286f2e7e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2ac82202860f4be888001d9b60dcb8d7": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_1e0b9c345d404c2baf0b3e2c840ba8f3"
}
},
"2ae1c0c50b3f409eb7ab04c927c375d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"2ae76be68bea4c66bb273cf1339c6713": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2af045c710fc40f6bdb33791142c3451": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2bba5bc2fd7d45688962a6c2954ed076": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_1612304f8a984364b71dc6f13fb629f9",
"IPY_MODEL_fd582e9469f845009a27a7af309074f3",
"IPY_MODEL_6bc6baad60644802bddb94a374da1fd3"
],
"layout": "IPY_MODEL_3950d1221100495aa910446439cde346"
}
},
"2bdc62f365b94a76a278d74e15e51aa7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_11e18f9131ac4efa9e81fa16b6222e7a"
],
"layout": "IPY_MODEL_2fd3dfb3d1074066abb8930a6a213a0a"
}
},
"2c5601eea08d472888cfc6a1376fb1e3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"2cc7ba49c53141b49b562984edaad169": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Y",
"layout": "IPY_MODEL_a6828b35784848a1a8bdc5f3a80f019a",
"max": 159,
"style": "IPY_MODEL_0062bc95b437437d83468393fa36c3b4",
"value": 80
}
},
"2d6fd9d7c7f346bd9687a2d6c547b3f0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2bba5bc2fd7d45688962a6c2954ed076",
"IPY_MODEL_c270e8ad749a4c81bc78939d8285568a"
],
"layout": "IPY_MODEL_d6c2e138b70f4708b0a723da9a8eb21a"
}
},
"2ee66a51ea7d44c19d5ac391bda8ad06": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_e3f1746a51374136948226d278241465",
"width": 256
}
},
"2fd3dfb3d1074066abb8930a6a213a0a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"303b6b16637b4886929df8fa3969302c": {
"model_module": "ipyevents",
"model_module_version": "2.0.1",
"model_name": "EventModel",
"state": {
"_supported_key_events": [
"keydown",
"keyup"
],
"_supported_mouse_events": [
"click",
"auxclick",
"dblclick",
"mouseenter",
"mouseleave",
"mousedown",
"mouseup",
"mousemove",
"wheel",
"contextmenu",
"dragstart",
"drag",
"dragend",
"dragenter",
"dragover",
"dragleave",
"drop"
],
"_supported_touch_events": [
"touchstart",
"touchend",
"touchmove",
"touchcancel"
],
"_view_module": "@jupyter-widgets/controls",
"source": "IPY_MODEL_07d7ee3f1d2d40b38bc9fb740967f461",
"throttle_or_debounce": "",
"watched_events": [
"mousemove"
],
"xy_coordinate_system": ""
}
},
"30606f89140849d5911649986ae578ff": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_count": 1,
"_view_module_version": "^0.13",
"height": 60,
"layout": "IPY_MODEL_a3345c2e49a244b39e496b0c7ababa69",
"width": 60
}
},
"309bc67eb4104d66b6bc51ea75c13fb3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"30affd0f1ed54b428f34232955df299c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3194f16fa5504025a8ee853c6cf2feed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"31da271824f3473e837bd1a7d2f06cd4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_ae276ebd31bd43008a04c6d71399d624"
],
"layout": "IPY_MODEL_8f41b813761745e08e8a9da96c5fd7ff"
}
},
"330cad0d53f44ba6b3065eb2fc545961": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3471ae06a9824fd496dc5cfb881f576a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"35dddc5007c7445cb1f8a214f55a3972": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"3613acc0e50a4e64ac496c4b8326bd79": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"description": "sigma",
"layout": "IPY_MODEL_640cab497af84a77b9e07555f52c2734",
"max": 25,
"style": "IPY_MODEL_89e96dfb49324262a1e0ad62811af4cd",
"value": 1
}
},
"3767d69b369e4a4895657056a726875e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_75afb96b9cc44218a65256f31fa58b89"
],
"layout": "IPY_MODEL_7668c3661cfb4b8484b9cf766b7a68b5"
}
},
"376f694cd65c48c1af671b8544f7bdcf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3883d916879b4944b81d80c3aa041350": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_68ca0d57768f453eafdc6d003d083ed2",
"width": 160
}
},
"38931de408f34b5c85aa16ffbcae13df": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c1d203259d994e8f9175f3af467bd87b"
],
"layout": "IPY_MODEL_4160617ef560444c93929379964c7dda"
}
},
"391ff156b0ef4980911e926c0a86eb70": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"3950d1221100495aa910446439cde346": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3a148ec929b94c07b981e42fe52c169e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3a4aa2f482064c5f9d7b8d52f09572c3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3b4d724a21aa480a8f40cbc239569cf6": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_c1816c804eb14867b5b567c307d0079a",
"width": 160
}
},
"3c254c8b581f4835b922266125229735": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_19c0ecec2d7243f8879909cdaeaf2389"
],
"layout": "IPY_MODEL_3fe5bd510d3c4860a94b03f5b6dfcf93"
}
},
"3c4b09a8c52545db9d30edf095b4d6cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_d54f6f7b8d194d348b5ef1bc115b36ca"
],
"layout": "IPY_MODEL_853c162a3b12496eb0352545d488cdf6"
}
},
"3c6375367b6a4727aa04fcef47080132": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0934c3dd87c74ae286f6d15d042b884d",
"IPY_MODEL_139bc97ebdfd4cd6995c0b3a630ebd1c",
"IPY_MODEL_925660e907014fd4881a4787f4782923"
],
"layout": "IPY_MODEL_843380361b274d8f936bff5dd85d6bec"
}
},
"3e4ad2cb742a4d3b9f91ef61adac380b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"3fe5bd510d3c4860a94b03f5b6dfcf93": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"3ff914df3a064f80a2a1a31ef6313a29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"40335a6b237248d1a178187dbbd924db": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_31da271824f3473e837bd1a7d2f06cd4",
"IPY_MODEL_dd03b29e62c441b8aec5fe340baacc8e"
],
"layout": "IPY_MODEL_098fb63221ef4fd7a08a66c331ef0aa7"
}
},
"4070567beaa74cd7bc1fb98901c3118a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"4160617ef560444c93929379964c7dda": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"41780130e7554f8595f251fbf96c0c12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"420e505fe6a8400080af17d53108eb74": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"43b580b4831649de9f7f29481becdd32": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "mask_func",
"index": 0,
"layout": "IPY_MODEL_767f37c22aa84039bb8ffca6e1561a35",
"style": "IPY_MODEL_71ea783909c04bdab032f6f3311bf402"
}
},
"43ed645acfe54e40aa4a82bf2029854c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "-",
"layout": "IPY_MODEL_19b3881a1dc8448a99e7f2883be2f503",
"style": "IPY_MODEL_25706f38026c4310a00fc476d377dcf1",
"tooltip": null
}
},
"44debf171b4d43ffb190df1a9aa27ba3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_0146cbf285504863925def4f22cc0960",
"IPY_MODEL_1e58ce32c0cc4cf09859237db5e024d0",
"IPY_MODEL_726f1c43e61148d2ac15028230349470",
"IPY_MODEL_cf76a50793ce4532a890a5ffb704d9e2"
],
"layout": "IPY_MODEL_bb533ef613084c53b8ba1e55c865d518"
}
},
"45b40b41462340639affa66f31cb42e9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_8c25b67e3a41433a81bbddd574b9f082",
"style": "IPY_MODEL_62464a1ca9a148189652bca67d2c81e0",
"value": "Label ID:"
}
},
"45f486cafff2458f9c09f7e956d31570": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 120,
"layout": "IPY_MODEL_834446f088c44a109e5311c1cfa06fcc",
"width": 160
}
},
"480693a2252b45c780516a0e5dde392c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"480a69a973a44e488f907070e1ea51bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "+",
"layout": "IPY_MODEL_19b3881a1dc8448a99e7f2883be2f503",
"style": "IPY_MODEL_f39e312f00054472992a90fd03b5dd47",
"tooltip": null
}
},
"4933dd6f1da9428596f41e433ced7720": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"493434d9a8714eb5b03910b6f43322d0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Curtain",
"layout": "IPY_MODEL_f9b9bb2c7e974c679055d7e2a330551b",
"max": 160,
"style": "IPY_MODEL_276487b0a6a9415fbb0d755f66654d67",
"value": 80
}
},
"493a47a3b69a4297a98d0354c0b89cb8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3767d69b369e4a4895657056a726875e",
"IPY_MODEL_2cc7ba49c53141b49b562984edaad169"
],
"layout": "IPY_MODEL_5daf0d5f36624f86a0c4214652fe318a"
}
},
"494daad5bdc9421d91fd3ae2a2db28ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4a5458af707a4de880b6a62ca83dc1a7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_35dddc5007c7445cb1f8a214f55a3972",
"max": 253,
"style": "IPY_MODEL_7ac0745d211040eb80a7f18f33a8e014",
"value": 127
}
},
"4a94c2ba338240bfa0c2c077112cedaa": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_c27e966f651448e8aaab48c5b84586d9"
}
},
"4aa3fbfc307c442aa070504b0cc118e1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4ca9247583ce4700b8c4d0b01413ea78": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "usemask",
"index": 0,
"layout": "IPY_MODEL_d3af2df9afa341a8bead80efe2317c99",
"style": "IPY_MODEL_e7166c0b664646569159fb8d71531aac"
}
},
"4d1120da9b604094b966904ebc1eb4c5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4d62cff7e3054c3b897839a79c7ce553": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4d6ce65301604efdbc0bbf2f1ed5b7f2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"4dba7501f80d4ff4a7261b9d7bd67c06": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"4dcad038cec448d8898e8a23c3ff8bb7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"4f089a11f37d40eeabc8f2df8670dff1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"4f50f39f1a65401bb1960fa0d20d0b3b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"4f5d61d2966842e7b40b91dced2f1423": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"4f7743e9563e45bba530dab2d49431d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_93c4e87a6fbd4dd998b4cff3d28a8fbe",
"style": "IPY_MODEL_1fa2452fcc1f457993b5da4736c4f1d7",
"value": "2"
}
},
"4faefe7b26244e4c893934f731d60266": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_24cc87637eba451ca86aa8f5742519ba"
],
"layout": "IPY_MODEL_7b43eee4497140e3839f2e91cee8cae9"
}
},
"502931347c064e7e904336d513c76e64": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_a44213980394409d925a752f49aa68d1",
"width": 256
}
},
"513c0a4fb64f4344b00fddba69069e3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"518335a94bae49dd990f0f1f80363a07": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bf9f33dd8d524e0081118f5513b11316"
],
"layout": "IPY_MODEL_c7231f39c9e34f28a2fecb1fcc39171e"
}
},
"519a0eac15924239af10256ce4d91ef2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0aa8c5846d8e452e806ed35c22df31c8"
],
"layout": "IPY_MODEL_adc06014762a4608b367a5809407c51b"
}
},
"52106a84ea164d449a91f045ed9b9feb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"528db004b6f24d30832ac604ab0fb2ba": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"534f6d511bdf447eb2814c1aa04389ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"53cd4539efe84c479b587ff2e1c3317b": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 389,
"layout": "IPY_MODEL_9383fa4485814f7a8836dcd51f21bfc6",
"width": 235
}
},
"5540f9288c834458b49b3e6eb09a273b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_8aea37af07eb4f0c978e68829ccde1ca",
"IPY_MODEL_011ef6288bd64d4ba1d58fd9e5a761c4"
],
"layout": "IPY_MODEL_a8d8c3cba3a34529a8acb6ba4850c71c"
}
},
"563e2cd114274b29aea8023e617615e6": {
"model_module": "ipyevents",
"model_module_version": "2.0.1",
"model_name": "EventModel",
"state": {
"_supported_key_events": [
"keydown",
"keyup"
],
"_supported_mouse_events": [
"click",
"auxclick",
"dblclick",
"mouseenter",
"mouseleave",
"mousedown",
"mouseup",
"mousemove",
"wheel",
"contextmenu",
"dragstart",
"drag",
"dragend",
"dragenter",
"dragover",
"dragleave",
"drop"
],
"_supported_touch_events": [
"touchstart",
"touchend",
"touchmove",
"touchcancel"
],
"_view_module": "@jupyter-widgets/controls",
"source": "IPY_MODEL_0aa8c5846d8e452e806ed35c22df31c8",
"throttle_or_debounce": "",
"watched_events": [
"mousemove"
],
"xy_coordinate_system": ""
}
},
"56821eaa03d54050aab2f79efef20199": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"57882a7d57e44f1190c84a9b7b57118f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"585ec350f0384e3988037a31e076881e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5915441a826b44d4a8a2c20f034611b4": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 389,
"layout": "IPY_MODEL_0ab36f10c65642ef9eadfb8daaefcd0e",
"width": 235
}
},
"591605501744474a82fabdedf668c8de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_7f4067256805433b9d247180b52ae9c2",
"style": "IPY_MODEL_5b63373382914f93aa645b729202e357"
}
},
"595f5d4067494f8b98bfd2a0bf942d9d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_a869d407ea114e70ab898d2606de9fb3",
"IPY_MODEL_b8014c820f9d433d88f9108364605e85",
"IPY_MODEL_d6b6ea5b996843c29de445dda85f13a8"
],
"layout": "IPY_MODEL_c02428bacffc48949b53d33ee09c6f86"
}
},
"59d7af786b50492fa6715b8d88cf5b4b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_fc1e18805c704f0fa850aaa67ff449b3",
"IPY_MODEL_a607d56070924fa5a5bd9b2c7ca3fb8e",
"IPY_MODEL_72d1617c0a264ef79559169fee87843b"
],
"layout": "IPY_MODEL_bb43e663aaf349358fc7a05d263ac611"
}
},
"5a12cc3b4a2a4e3990e61e83deb92993": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_b30778d27fb0438da324d93d12feb6e7"
],
"layout": "IPY_MODEL_98a176023c2d42428a416d0ae448831f"
}
},
"5b63373382914f93aa645b729202e357": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"5b97a930919d483ba43f716267b9b530": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b76256b02edc44eabebe2964ceb800c9"
],
"layout": "IPY_MODEL_ab8d861feab447bbaadad15a6572fb6f"
}
},
"5c484c1b21a14a2caba086ad4f85a283": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5c6e427639af4e09b9520c32624255eb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"5cabf6d1e65d42cbb461097e8136cf30": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_bb4aec58c77a40a8b265b94f937c55e2",
"IPY_MODEL_c3b20285a37b4574aeb38ec51717f1d5",
"IPY_MODEL_b102239507cf49adba4658182a6307f4"
],
"layout": "IPY_MODEL_727a77379c464204acb16736a8bf309c"
}
},
"5d4d99b732d14c15acd7dab086c476c0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5daf0d5f36624f86a0c4214652fe318a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5e44bc61e7874b8f826ee88e1b4e5454": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5ef245b77b2840be80805af9ef71a5c6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"5f6bd41135084d96884e60c4fb223f43": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"5f74e250855b45a581d04615a25b3b0e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"5f941f15b11744a683cefa5d1363fef5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6006753069db4094a0da43cfcb7f5b60": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6014ad53a054409585c08430540b5e61": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c5305fcd39234bc8a2f57c30e3e3ef5e",
"style": "IPY_MODEL_052ab6eeaa954099bac78ef8a409f14b",
"value": "maximum(..., footprint=disk(0))"
}
},
"61d845b62fa6475c8532a06c4d6bc7aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"62464a1ca9a148189652bca67d2c81e0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"62d2f49c997e4d7bacc0b139d2151f46": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "CheckboxStyleModel",
"state": {
"description_width": ""
}
},
"6332e843c0c34cdba51d759a3e53fb9a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"description": "sigma",
"layout": "IPY_MODEL_e1ab4a4c05d845e691d271583c8f097d",
"max": 25,
"style": "IPY_MODEL_ab4358ef38314370ae4db702264cf624",
"value": 1
}
},
"635a8901e45e498ea728923c72bc42e3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"63f3868860de416792c4b76a5eeb19e1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"640cab497af84a77b9e07555f52c2734": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6490789da4b44fcc89793dc0ef11843f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_18a7777ef73b456aa8fdee3206d1331c",
"IPY_MODEL_b244a9e214544a2c926f5b8f9edda9bc",
"IPY_MODEL_711d9bf4bff64ad4baa8050a8a708023",
"IPY_MODEL_ee6bd653f58c43108388530bbfa7ab80"
],
"layout": "IPY_MODEL_ca7d51fd56bb4899a2312c9467b2f2be"
}
},
"64ca61e1875c49f68832b51610501abb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_8980fd28108f44528dc13fa60b6e6621",
"IPY_MODEL_d1761d7f188b4fd6a3402edee6568982",
"IPY_MODEL_d4b010480ccc4b23866417e77b207fc4"
],
"layout": "IPY_MODEL_4aa3fbfc307c442aa070504b0cc118e1"
}
},
"6526324eda4f4020bf4616d3ecdfb957": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"668eb4f5a45f43419c444a49c3db04fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"67c5d21a715d4f14b8259d5a7d8457c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"687dd9b07a4e4a5189727504163893be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5540f9288c834458b49b3e6eb09a273b",
"IPY_MODEL_bbf7a4ad1cb449c6bbdfed147d32b01d"
],
"layout": "IPY_MODEL_1854273de44b49dea15e03bdca22f1d2"
}
},
"68ca0d57768f453eafdc6d003d083ed2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"697f4e7a2f9c43d59a0b80ffb055af04": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"6ace488cde3e4c8da3a9f3b1f4ce7c19": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"stackview.nop",
"np.genfromtxt",
"np.mask_indices",
"np.place",
"gaussian",
"threshold_otsu",
"label",
"maximum",
"sobel",
"my_custom_code"
],
"description": "Operation",
"index": 0,
"layout": "IPY_MODEL_15fbd421311342b0acf0640e58e08382",
"style": "IPY_MODEL_15d2a014803a48439b10ab1d0fc0cd67"
}
},
"6b3e7abe049b4758890757016db83bb0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6b6b459123af491fa4dc5ad548a68e11": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_44debf171b4d43ffb190df1a9aa27ba3",
"IPY_MODEL_c622a4e9272c498ba0722fa2fa2591ba"
],
"layout": "IPY_MODEL_f81b4aba0ae8450c8484de5875cb33e4"
}
},
"6ba3ace53cf54588a05b3a362902c9ab": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_2274a9ffa8c74c43a978615be92dff38",
"IPY_MODEL_206b7b5f9dd34763807bfa9cc2485718"
],
"layout": "IPY_MODEL_b17dd30f49334dd0b98944fffe2740fc"
}
},
"6bc6baad60644802bddb94a374da1fd3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_e9f518a74a2b4c88b2396f11c90c8d6d"
],
"layout": "IPY_MODEL_25e22da39a7541c68e9d3e268b1234c2"
}
},
"6c568045024742feb1e041a7bcac41b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "mask",
"index": 0,
"layout": "IPY_MODEL_276f9c400e464987959add7e523f854d",
"style": "IPY_MODEL_8e6ef1a5544648a3b47227482712c0e6"
}
},
"6c93c1c49a1b4787ae0373c362f2bf0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"6cd7abcf29214f0f9708b22d7ab8cec4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"6cd83785a9954530aa9b5c5fa7b4c557": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"6dc43daeaf274fa8a64a37dbb1028563": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_43ed645acfe54e40aa4a82bf2029854c",
"IPY_MODEL_4f7743e9563e45bba530dab2d49431d3",
"IPY_MODEL_480a69a973a44e488f907070e1ea51bc"
],
"layout": "IPY_MODEL_5d4d99b732d14c15acd7dab086c476c0"
}
},
"6f77fda468814012ad3f71bf2b2de548": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_75984444599947f88570a71349981701",
"IPY_MODEL_8aeb837560d4476299a77967732b759d"
],
"layout": "IPY_MODEL_7c8b737cee3140c2ac0f382a91fd9f42"
}
},
"7005621471554bf489ec0dd05a006ee2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "footprint",
"layout": "IPY_MODEL_c82834d36b6b40f99a366dedfd520ee7",
"style": "IPY_MODEL_5f74e250855b45a581d04615a25b3b0e"
}
},
"7021fc52d99145e99fca142e90f4e182": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"7042bb31efec45cdb6d4ef8c66d43567": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3b4d724a21aa480a8f40cbc239569cf6"
],
"layout": "IPY_MODEL_3a148ec929b94c07b981e42fe52c169e"
}
},
"705b53d40a3a40229c7a1030b68f639d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "FloatSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "sigma",
"layout": "IPY_MODEL_8c4a37bc11d44e8c89dc2de94a174054",
"max": 25,
"style": "IPY_MODEL_4f5d61d2966842e7b40b91dced2f1423",
"value": 1
}
},
"70d8c4ff969e45e9b5794edc213e8cd2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"711d9bf4bff64ad4baa8050a8a708023": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_518335a94bae49dd990f0f1f80363a07"
],
"layout": "IPY_MODEL_0df42a2b8a91442386147653fdb18be2"
}
},
"71d09d70b40f4edf96251bab38a39a50": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_595f5d4067494f8b98bfd2a0bf942d9d",
"IPY_MODEL_7c82397289514b0eb6c6299ec91e0d81"
],
"layout": "IPY_MODEL_c448cc4f22dc439e922b091bd8808873"
}
},
"71ea783909c04bdab032f6f3311bf402": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"721d3f936dfe42e7a2234701817b942f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0f0f238cfc6d41d898c3992b0d9ba3c9"
],
"layout": "IPY_MODEL_bab292f0c7b64fa392b720b1439358d8"
}
},
"725cdb7d0a5a45a48fb99869c6c5f0dc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"726f1c43e61148d2ac15028230349470": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "CheckboxModel",
"state": {
"description": "show_labels",
"disabled": false,
"layout": "IPY_MODEL_99207327a74d4aeca221933c52884425",
"style": "IPY_MODEL_62d2f49c997e4d7bacc0b139d2151f46",
"value": true
}
},
"727a77379c464204acb16736a8bf309c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"72a79b1aca73499ea7461686df655f23": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"72b469645e18409d85bca2e518d4af59": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"72b9ae1041864a87ad2acc02bbc96c5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"72d1617c0a264ef79559169fee87843b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "+",
"layout": "IPY_MODEL_9e5f09d6204646ce91bdc7bedd13a3b8",
"style": "IPY_MODEL_725cdb7d0a5a45a48fb99869c6c5f0dc",
"tooltip": null
}
},
"74fac521fb604c918e3370bb425ef164": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"756a94c4b9364ebf99bbf726e4b6ee40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"75984444599947f88570a71349981701": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_43b580b4831649de9f7f29481becdd32",
"IPY_MODEL_b6abc8ed84544268abb4509b2c25095c"
],
"layout": "IPY_MODEL_82f784b79a1748ef8926eeacf470c6ef"
}
},
"75afb96b9cc44218a65256f31fa58b89": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b97c16201a7449e6bfdddaafc6760d5d"
],
"layout": "IPY_MODEL_851a16c9ca5446629c6b27dfecb7a9da"
}
},
"75c6eb613cb946f7afdfdbb88ef5ae39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"75c7cbfb1d124cac9af3a275f91770d3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9f751412d6034c20adb341a850d61ccd"
],
"layout": "IPY_MODEL_bcf8795037ea4043a2fdcbf0e75279b5"
}
},
"75ce29aff894454698e385b777e7c5b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"764fd5d08d2e4978a79a218a248bfdce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7668c3661cfb4b8484b9cf766b7a68b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"767f37c22aa84039bb8ffca6e1561a35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"77b9a662058d4f0092c8591f22cefa8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"781c86f289c04577b57d866af5e5bef3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7856346ea1af40549c5e19cba3f53935": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"78bd2418a20f44c882ac04b1c5bbfc59": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"79e8752526224baaa28deacc8a7494b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7ac0745d211040eb80a7f18f33a8e014": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"7add98d9ec8a4d8aade80e1115fb5b9d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7b43eee4497140e3839f2e91cee8cae9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7c82397289514b0eb6c6299ec91e0d81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_b9e783aea6864fbaae3550e0f619007b",
"max": 98,
"style": "IPY_MODEL_668eb4f5a45f43419c444a49c3db04fd",
"value": 49
}
},
"7c8b737cee3140c2ac0f382a91fd9f42": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"7d0469aa3445446eb78c1bfe2083eada": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7d6b3a64e934494585dfc270c3672fb7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7da73ebc82894a81a009e6ac1724ca02": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"7f4067256805433b9d247180b52ae9c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8010eb9d7d954cb8a6d33dd0a89151f6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"81b80e4c5c724d43a64d9d3049b9816b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"81d2b8523bd6466f9d704cb300d21050": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"82f784b79a1748ef8926eeacf470c6ef": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"834446f088c44a109e5311c1cfa06fcc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"843380361b274d8f936bff5dd85d6bec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"844d9825b3bc429a8f4341a2b17bd272": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "CheckboxStyleModel",
"state": {
"description_width": ""
}
},
"84823d2f4dfc4b9085ea9550656d7d98": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8495bad86fa44ee983465469d8d408ae": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_5cabf6d1e65d42cbb461097e8136cf30",
"IPY_MODEL_d9cb90f1af5740269bf36daaaed2dec2"
],
"layout": "IPY_MODEL_c6e8d78cd42f411386126e33bc1f978d"
}
},
"849a63885c59453aa9ccd23b93ca2e4c": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 389,
"layout": "IPY_MODEL_72b9ae1041864a87ad2acc02bbc96c5f",
"width": 235
}
},
"851a16c9ca5446629c6b27dfecb7a9da": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"853c162a3b12496eb0352545d488cdf6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8558ad6a4b404ad596e47e21d983edab": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"867f74a1d6c443878abadc7c6c76cbed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"86acb255653b4f0c90bb1cf57a4fbbd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"86b1121007c14538a81ce34e51b4a1c7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"max_width": "30px",
"min_width": "10px"
}
},
"870c0b2020a546fd923bb1e1ef02d50e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_9a3e696a68c84e9c886d81fb2be583d7",
"IPY_MODEL_a171e381fb3f46de83286eafb224d46a"
],
"layout": "IPY_MODEL_dcb0f2d3491442f09574bdcd2618b43a"
}
},
"87bdd5124c1a41f6aa4489a0341da127": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "Slice",
"layout": "IPY_MODEL_f57cfe09e0ac44f6a90f33ed0c07de40",
"max": 119,
"style": "IPY_MODEL_4dcad038cec448d8898e8a23c3ff8bb7",
"value": 60
}
},
"88061359ea0e4204b27ed3982645bbca": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_c563e0f090f64c11b509ef6242dd2fe1",
"width": 256
}
},
"885d6983fe724108b6057bf2c88dda03": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"88bffb8debb343338be4da9c01130a0f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8980fd28108f44528dc13fa60b6e6621": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_721d3f936dfe42e7a2234701817b942f"
],
"layout": "IPY_MODEL_5c484c1b21a14a2caba086ad4f85a283"
}
},
"89e96dfb49324262a1e0ad62811af4cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8a3602adfb5641d0bfa55ca850f10b26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"8a9b688a68434d139e2a4c6d2395e637": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8ad760ab5efd4a69ba222323154776e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_11c783515a8f4dadb77b17d9ae72fa36",
"IPY_MODEL_6014ad53a054409585c08430540b5e61",
"IPY_MODEL_07472f787d394f1fbc22a0499f706936",
"IPY_MODEL_13313f384d404133bf82bf8ad4ac2863"
],
"layout": "IPY_MODEL_d9e63f2caaae4094ac8fe49692380690"
}
},
"8aea37af07eb4f0c978e68829ccde1ca": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_fe57e18fb3b640348753bd077aca85b6",
"style": "IPY_MODEL_14999435d739447ba0014750f152414d"
}
},
"8aeb837560d4476299a77967732b759d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_1ae62a3e047c4c89a61967d141d7a65f",
"style": "IPY_MODEL_07ff7eb7a0954e7087453ceba6bc1927",
"value": "np.mask_indices( mask_func=no_image)"
}
},
"8b01d8cb5cf347b188e4f1a0f156aa22": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"8b56df7f88364facb4085bdb6da8bb87": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_03591d61ea104834a2939d149e3f4a7c",
"IPY_MODEL_21e288222d9141099702e22cf169bb41",
"IPY_MODEL_a0d1c9febee64426b82af0f5e48e7c3d"
],
"layout": "IPY_MODEL_8558ad6a4b404ad596e47e21d983edab"
}
},
"8b5d6c0abc3e40fb891fc1ab283ba278": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"8c25b67e3a41433a81bbddd574b9f082": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8c4a37bc11d44e8c89dc2de94a174054": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8e2681c4aaae446d90530474396b266b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"8e6ef1a5544648a3b47227482712c0e6": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"8ef3257c80ef48fba2be639c71634a5f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_0ecb990487274ac090b61c1ac7a4deec"
],
"layout": "IPY_MODEL_30affd0f1ed54b428f34232955df299c"
}
},
"8f41b813761745e08e8a9da96c5fd7ff": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"925660e907014fd4881a4787f4782923": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Curtain",
"layout": "IPY_MODEL_bd829c55247340f19de933aee00ed447",
"max": 256,
"style": "IPY_MODEL_88bffb8debb343338be4da9c01130a0f",
"value": 128
}
},
"927b82e99c874dceb2a0aa624d0d21d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"92bee3df6a8d4a48ab5b2afe5302b426": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_f3033b9aec044cee89259afe7f5b1bec",
"IPY_MODEL_6332e843c0c34cdba51d759a3e53fb9a",
"IPY_MODEL_17a2437cfde14966abfd1f2978a026cb"
],
"layout": "IPY_MODEL_12cb72aa82d84500b421e51a7fbf58c3"
}
},
"933c264cf7874c0f96db3dc4e46c8290": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"9383fa4485814f7a8836dcd51f21bfc6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"93c4e87a6fbd4dd998b4cff3d28a8fbe": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"93eaa60b63c6439c9cd8e0649f9495f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"948c1d68fb5b43fda207771ad31ba30b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"95f83ec14471443e855b7ba7d1e12337": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"9645e1de6789402c8be6100743848c0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Curtain",
"layout": "IPY_MODEL_e11003e424664add8fa4ead412797d33",
"max": 256,
"style": "IPY_MODEL_c32d61697cd0453d855986a319c71569",
"value": 128
}
},
"96551fc16e4d4d4a98ff347e36c9f6dc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"975b46b3d6f0473bb284919275e3468d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"98067cee53a44c44bfaa392aa35cb9ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"980afd75a26f46de862125210ea2e224": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Curtain",
"layout": "IPY_MODEL_b765e056da01457393ca17b7933df237",
"max": 160,
"style": "IPY_MODEL_cad5c34e34634afc983d882fd19891de",
"value": 80
}
},
"988f6094a03643d4b3b59990e88d124d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_519a0eac15924239af10256ce4d91ef2"
],
"layout": "IPY_MODEL_96551fc16e4d4d4a98ff347e36c9f6dc"
}
},
"98a176023c2d42428a416d0ae448831f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"991ae03bab7547d19b3035c915f91d1a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"99207327a74d4aeca221933c52884425": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"996a5bcf24b84e4d958d8a9044174bcd": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_e28b1f41ee2d4f2aaea9081d769ed4fa"
}
},
"9a0b8f11d4c448c49174de3c456ba95d": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 11,
"layout": "IPY_MODEL_e40efcef408541c0988bf2be6e1b6d86",
"width": 11
}
},
"9a3e696a68c84e9c886d81fb2be583d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_2ae76be68bea4c66bb273cf1339c6713",
"style": "IPY_MODEL_7021fc52d99145e99fca142e90f4e182"
}
},
"9aa7ddf881844256aa1587104e0c3f49": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"9bd7b41ec7084a7bb94588ac0f3293b4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"9c9ba567cf7f4639964af66301418c6b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"9d184cf9909444669f7e4124880729ea": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_9c9ba567cf7f4639964af66301418c6b"
}
},
"9dc64d78feb548ee9fe7513623d25bd1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_502931347c064e7e904336d513c76e64"
],
"layout": "IPY_MODEL_edb566bc883342b39ff4bdf5ad5c71c2"
}
},
"9dd2a9041727458b9b70338a8d604198": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"9def8266f52d497db6601b2c55ed8ab1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_61d845b62fa6475c8532a06c4d6bc7aa",
"max": 253,
"style": "IPY_MODEL_391ff156b0ef4980911e926c0a86eb70",
"value": 127
}
},
"9e5f09d6204646ce91bdc7bedd13a3b8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"max_width": "30px",
"min_width": "10px"
}
},
"9eca7ea7d2b94b8c91611a0633f5b015": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"9f14b715a237441c8010457c78ed812d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"9f751412d6034c20adb341a850d61ccd": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 235,
"layout": "IPY_MODEL_d9cf29a6e5e94aada8d0bf3071ce1d3b",
"width": 389
}
},
"9f7f659a9de444838e5c6ac3a4296074": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_72b469645e18409d85bca2e518d4af59",
"style": "IPY_MODEL_a05e03be334f4e8f90c22eaf4aa40222",
"value": "1"
}
},
"9fdb7dcd5b4f4c8fafd004374226198a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a01775ade98c4635bb0252f179395460": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a047edf1315047df9fb06e6937dbc0b0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a05e03be334f4e8f90c22eaf4aa40222": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"a0b0c88c9db2422dac16aed9f05c74cd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_249b4ff654f14963b4db8494e7e0a00a",
"style": "IPY_MODEL_f8bf85d79f3e4b10be05309f00ed2403",
"value": "stackview.nop( image=no_image)"
}
},
"a0d1c9febee64426b82af0f5e48e7c3d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c9ff1de639e646e08854101ecfcf1473",
"style": "IPY_MODEL_70d8c4ff969e45e9b5794edc213e8cd2",
"value": "[]:"
}
},
"a171e381fb3f46de83286eafb224d46a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_bb2195e8a64740f9851b85f35e86c5bb"
}
},
"a18fdd11373d440b93074f4b42ecaba7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"a1ab352edb2e4ccfbcd71410b501cf1e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "Slice",
"layout": "IPY_MODEL_282dfafca1884f05a4c07627c3d69b85",
"max": 2,
"style": "IPY_MODEL_d9a2574bba5142729a1a980653a607d7",
"value": 1
}
},
"a1e40b70997c42f59a1c86eebab2c470": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLStyleModel",
"state": {
"description_width": "",
"font_size": null,
"text_color": null
}
},
"a222881b45274f9cae9d9293721e54c8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a2572b3179074d808c66942b77679e05": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a27da3e5eb174fb79747d36a4a30a753": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"a2a224616cf44c4fb61a9910edc7cb6a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a300f6224ec8426e8be2770f7cac2e57": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_705b53d40a3a40229c7a1030b68f639d",
"IPY_MODEL_996a5bcf24b84e4d958d8a9044174bcd"
],
"layout": "IPY_MODEL_d4a9768cfee14905af609f15c84a8d6c"
}
},
"a3345c2e49a244b39e496b0c7ababa69": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a425c599b56d460bb8b4d5612504548e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a44213980394409d925a752f49aa68d1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a502d835c38740da982c03b6bbffc02c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a53f8f75be614cb19500422ba7a7d51b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a54ec3c9584b477bb199ea9dd5646f83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a55695664c124ea599da83e455c9e001": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"a5ade47a8e3745b68e459195a67b248c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a607d56070924fa5a5bd9b2c7ca3fb8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_75ce29aff894454698e385b777e7c5b6",
"style": "IPY_MODEL_3194f16fa5504025a8ee853c6cf2feed",
"value": "4"
}
},
"a6828b35784848a1a8bdc5f3a80f019a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a7001bc78fb0432c987ea2dc081786f0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a74297f25e054a65abd719237f79868a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"continuous_update": false,
"description": "Slice",
"layout": "IPY_MODEL_a01775ade98c4635bb0252f179395460",
"max": 253,
"style": "IPY_MODEL_9f14b715a237441c8010457c78ed812d",
"value": 127
}
},
"a775dfcf12254c119b43d1a2041442e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a7accc8e8464490983a1271228efd031": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a7e8109a56724a15bcd75b36fe32db75": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HTMLModel",
"state": {
"layout": "IPY_MODEL_6526324eda4f4020bf4616d3ecdfb957",
"style": "IPY_MODEL_a1e40b70997c42f59a1c86eebab2c470"
}
},
"a8127cb266644b819f678c220ef001f5": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_a7001bc78fb0432c987ea2dc081786f0",
"width": 256
}
},
"a869d407ea114e70ab898d2606de9fb3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_fd4229b28ff54051b8150bbc26c1a182"
],
"layout": "IPY_MODEL_4d1120da9b604094b966904ebc1eb4c5"
}
},
"a891253724044c84b8eafd3b511af9a3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3883d916879b4944b81d80c3aa041350"
],
"layout": "IPY_MODEL_7d0469aa3445446eb78c1bfe2083eada"
}
},
"a8d8c3cba3a34529a8acb6ba4850c71c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a8dbc121f0204026b98eb3b698a46204": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"a95225c482584dddb1da6ca9d8f1efe7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a300f6224ec8426e8be2770f7cac2e57",
"IPY_MODEL_00d1543918af4a9099b2aa15006663bb",
"IPY_MODEL_2bdc62f365b94a76a278d74e15e51aa7",
"IPY_MODEL_a74297f25e054a65abd719237f79868a"
],
"layout": "IPY_MODEL_81b80e4c5c724d43a64d9d3049b9816b"
}
},
"a97a93d83066454d9a8ce31f3d414ef9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Z",
"layout": "IPY_MODEL_13c2be7393f848b085f08549fc64d62d",
"max": 119,
"style": "IPY_MODEL_d61fa86c560b4e1aabc078bf35d5d6aa",
"value": 60
}
},
"a9eeca555dd8407eb58967396b82a33b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_7042bb31efec45cdb6d4ef8c66d43567"
],
"layout": "IPY_MODEL_cc0a0ae14463459c9ecb7d75d98ae1f1"
}
},
"aac591d3431c4b109619073ecc25bac9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"ab4358ef38314370ae4db702264cf624": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"ab8d861feab447bbaadad15a6572fb6f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"adadf710ec1448068ad500cf3971de6c": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_f438b44a61f04606a81d0ce42b7272a6",
"width": 160
}
},
"adc06014762a4608b367a5809407c51b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ae276ebd31bd43008a04c6d71399d624": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_adadf710ec1448068ad500cf3971de6c"
],
"layout": "IPY_MODEL_c4ed503e8e5b4eadaa93af00158b2593"
}
},
"af21156770e649ab947b5fc4021255fa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1fdffd9bd9b94c03a1d158c0dc1db17c",
"IPY_MODEL_2603f58060c940c5a70e988b34b491e6",
"IPY_MODEL_e4b903cec6d64403ae8cd827eefc32fd"
],
"layout": "IPY_MODEL_41780130e7554f8595f251fbf96c0c12"
}
},
"af4fe0c94ba3440ca90e07dcb732d8cf": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"b102239507cf49adba4658182a6307f4": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_933c264cf7874c0f96db3dc4e46c8290"
}
},
"b10f9272a97a483093747993887dee4e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_c88298708cc1492293604ca30c3c6fb5",
"style": "IPY_MODEL_e52483b770ea45c7ab611c2201a2f04f",
"value": "np.place( mask=no_image)"
}
},
"b17dd30f49334dd0b98944fffe2740fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b209cb1541db4de58be63ea2eb569aba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_e7759002a78a43e185d128faa3375e99",
"IPY_MODEL_4a94c2ba338240bfa0c2c077112cedaa"
],
"layout": "IPY_MODEL_3471ae06a9824fd496dc5cfb881f576a"
}
},
"b244a9e214544a2c926f5b8f9edda9bc": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_a222881b45274f9cae9d9293721e54c8",
"style": "IPY_MODEL_c608ce868883448ead70e87f4c29e274",
"value": "my_custom_code(..., sigma=1.0, show_labels=True)"
}
},
"b24b279d11bb4f6682a5f9e9c0a1374f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b2e0a17ae54f4b4ebd5a7dbab55f17b2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"_dom_classes": [
"widget-interact"
],
"children": [
"IPY_MODEL_591605501744474a82fabdedf668c8de",
"IPY_MODEL_19de66b645564354855d84a7baaa8fe5",
"IPY_MODEL_f05ec1b627464357826e1f13b3d0c5f8",
"IPY_MODEL_d1eaae5e6659497b908ecc004ed46734"
],
"layout": "IPY_MODEL_6006753069db4094a0da43cfcb7f5b60"
}
},
"b30778d27fb0438da324d93d12feb6e7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_9a0b8f11d4c448c49174de3c456ba95d"
],
"layout": "IPY_MODEL_169c2961b83343bdb819c7d50f0ce734"
}
},
"b37f788edbfa4e16ab15b76f12a3a039": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_3c254c8b581f4835b922266125229735",
"IPY_MODEL_1f055e46b5bf4007bc7d0eb4a89f2c3a"
],
"layout": "IPY_MODEL_b664e378f9114ad79e96c54352bb6cb2"
}
},
"b3d9deef2c4a46a69528b38026e75467": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"b3fd5615009545a1a36f1549d7f89a10": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_07d7ee3f1d2d40b38bc9fb740967f461"
],
"layout": "IPY_MODEL_9bd7b41ec7084a7bb94588ac0f3293b4"
}
},
"b4f2fc405ff6416482e4c2d1620c98fd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b5db591a7e6a4729846d331f1dd55f9f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b664e378f9114ad79e96c54352bb6cb2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b6abc8ed84544268abb4509b2c25095c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_991ae03bab7547d19b3035c915f91d1a"
}
},
"b76256b02edc44eabebe2964ceb800c9": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 235,
"layout": "IPY_MODEL_98067cee53a44c44bfaa392aa35cb9ea",
"width": 389
}
},
"b765e056da01457393ca17b7933df237": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"b8014c820f9d433d88f9108364605e85": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_75c7cbfb1d124cac9af3a275f91770d3"
],
"layout": "IPY_MODEL_d97ddfa1e03b4a49be5f7abe3a81ee3f"
}
},
"b97c16201a7449e6bfdddaafc6760d5d": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 120,
"layout": "IPY_MODEL_a2a224616cf44c4fb61a9910edc7cb6a",
"width": 160
}
},
"b9e783aea6864fbaae3550e0f619007b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bab292f0c7b64fa392b720b1439358d8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bb0e6485777440ad97bf01e5ff39788e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_1d1650985d7544df9e2430d32fd4cd79",
"IPY_MODEL_b10f9272a97a483093747993887dee4e"
],
"layout": "IPY_MODEL_6cd83785a9954530aa9b5c5fa7b4c557"
}
},
"bb2195e8a64740f9851b85f35e86c5bb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bb3bf9b859b844fabc42ed5543f0aa0d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_c0523e8a851e429591f92e0bad1469be",
"IPY_MODEL_493a47a3b69a4297a98d0354c0b89cb8",
"IPY_MODEL_b37f788edbfa4e16ab15b76f12a3a039"
],
"layout": "IPY_MODEL_0299ba3fa3294e6694e3569af7a5084f"
}
},
"bb43e663aaf349358fc7a05d263ac611": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bb4aec58c77a40a8b265b94f937c55e2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_2a6016d4e38142c38c72d66a286f2e7e",
"style": "IPY_MODEL_af4fe0c94ba3440ca90e07dcb732d8cf"
}
},
"bb533ef613084c53b8ba1e55c865d518": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bb887e7445ca443784539d329f6a0526": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "+",
"layout": "IPY_MODEL_86b1121007c14538a81ce34e51b4a1c7",
"style": "IPY_MODEL_635a8901e45e498ea728923c72bc42e3",
"tooltip": null
}
},
"bb8a6f240a0940f491e2ae50cf9afcc0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_4faefe7b26244e4c893934f731d60266",
"IPY_MODEL_089f090b363a404c80acf2fadb7e9cdd",
"IPY_MODEL_493434d9a8714eb5b03910b6f43322d0"
],
"layout": "IPY_MODEL_a502d835c38740da982c03b6bbffc02c"
}
},
"bbf7a4ad1cb449c6bbdfed147d32b01d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_86acb255653b4f0c90bb1cf57a4fbbd7",
"style": "IPY_MODEL_6cd7abcf29214f0f9708b22d7ab8cec4",
"value": "threshold_otsu( image=no_image)"
}
},
"bcca3e4353574b999bc0c21f710a95c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bcf8795037ea4043a2fdcbf0e75279b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bd829c55247340f19de933aee00ed447": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bdcb9b1ed464484685f47cbb6f5a67b9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a9eeca555dd8407eb58967396b82a33b",
"IPY_MODEL_c671d40c4c8044ebac6b93b20c8f9ef9",
"IPY_MODEL_980afd75a26f46de862125210ea2e224"
],
"layout": "IPY_MODEL_a8dbc121f0204026b98eb3b698a46204"
}
},
"bf2a853dcb7c4a64a0ebdf9aa43964e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"bf69e63c6ac5463ab33c87a70bf0dc71": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"bf9f33dd8d524e0081118f5513b11316": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 254,
"layout": "IPY_MODEL_7d6b3a64e934494585dfc270c3672fb7",
"width": 256
}
},
"bfe8eb7bf3e94753a873ebed5ea94e2c": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_module_version": "^0.13",
"height": 235,
"layout": "IPY_MODEL_0b38757e8e044c15aced97ef0ee0d4c6",
"width": 389
}
},
"bff5ba1312d04355996aab5cbf3e5582": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c02428bacffc48949b53d33ee09c6f86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c0523e8a851e429591f92e0bad1469be": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_f3c2959eb515463582d55b9786c08dcb",
"IPY_MODEL_a97a93d83066454d9a8ce31f3d414ef9"
],
"layout": "IPY_MODEL_a425c599b56d460bb8b4d5612504548e"
}
},
"c1816c804eb14867b5b567c307d0079a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c1d203259d994e8f9175f3af467bd87b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_2ee66a51ea7d44c19d5ac391bda8ad06"
],
"layout": "IPY_MODEL_9fdb7dcd5b4f4c8fafd004374226198a"
}
},
"c2139789e13f4a0bb04f0ac28cd2f380": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"c22245efd1f14321ade84770ba39a0ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"c270e8ad749a4c81bc78939d8285568a": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_032bf642a8bd454ca3ede2a9611845ac",
"max": 99,
"style": "IPY_MODEL_2559db38fe9f4989abd5c82ea02ce625",
"value": 50
}
},
"c27e966f651448e8aaab48c5b84586d9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c32d61697cd0453d855986a319c71569": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"c382ec7109964be5a1655d608c28be41": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c390f729eaa14fae850b3eec9837a83d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5f6bd41135084d96884e60c4fb223f43",
"style": "IPY_MODEL_7856346ea1af40549c5e19cba3f53935",
"value": "Eraser radius:"
}
},
"c3989996443046fcb6660e969f123f2a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c3b20285a37b4574aeb38ec51717f1d5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "mask",
"index": 0,
"layout": "IPY_MODEL_3a4aa2f482064c5f9d7b8d52f09572c3",
"style": "IPY_MODEL_a55695664c124ea599da83e455c9e001"
}
},
"c448cc4f22dc439e922b091bd8808873": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c4ed503e8e5b4eadaa93af00158b2593": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c5305fcd39234bc8a2f57c30e3e3ef5e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c563e0f090f64c11b509ef6242dd2fe1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c608ce868883448ead70e87f4c29e274": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"c622a4e9272c498ba0722fa2fa2591ba": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_420e505fe6a8400080af17d53108eb74",
"style": "IPY_MODEL_4070567beaa74cd7bc1fb98901c3118a",
"value": "my_custom_code( image=no_image, sigma=1.0, show_labels=True)"
}
},
"c671d40c4c8044ebac6b93b20c8f9ef9": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_d9dbbfc6d67b41f6985b5fa69a3176a8",
"max": 119,
"style": "IPY_MODEL_125123dd4c9c40e2b33cbaa0dafe6fa1",
"value": 60
}
},
"c6e8d78cd42f411386126e33bc1f978d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"c7231f39c9e34f28a2fecb1fcc39171e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c82834d36b6b40f99a366dedfd520ee7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c88298708cc1492293604ca30c3c6fb5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c8f6010577574d8fbefeec23a2f9c983": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_6ba3ace53cf54588a05b3a362902c9ab",
"IPY_MODEL_db634e1123284e4b8bc417d5a99f72ad",
"IPY_MODEL_38931de408f34b5c85aa16ffbcae13df",
"IPY_MODEL_9def8266f52d497db6601b2c55ed8ab1"
],
"layout": "IPY_MODEL_e68674b0821c401baedc5f2261a01c75"
}
},
"c9313c0a45bd41729a1f40154f8d2046": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"c9ff1de639e646e08854101ecfcf1473": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ca7d51fd56bb4899a2312c9467b2f2be": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"cad5c34e34634afc983d882fd19891de": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"cc0a0ae14463459c9ecb7d75d98ae1f1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ce5064de008a4182ba1f0a6c4ce3aa7b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_16a05651b9ec4de98ebd9435c85728ab",
"IPY_MODEL_9f7f659a9de444838e5c6ac3a4296074",
"IPY_MODEL_bb887e7445ca443784539d329f6a0526"
],
"layout": "IPY_MODEL_bcca3e4353574b999bc0c21f710a95c2"
}
},
"cf76a50793ce4532a890a5ffb704d9e2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_b24b279d11bb4f6682a5f9e9c0a1374f"
}
},
"d14260a362e34be29808a7a197a15e06": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"d1761d7f188b4fd6a3402edee6568982": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_8010eb9d7d954cb8a6d33dd0a89151f6",
"max": 119,
"style": "IPY_MODEL_9eca7ea7d2b94b8c91611a0633f5b015",
"value": 60
}
},
"d1a3e32e1b364355b66a72ff6d7f2b17": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TextStyleModel",
"state": {
"description_width": "",
"font_size": null,
"text_color": null
}
},
"d1eaae5e6659497b908ecc004ed46734": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"layout": "IPY_MODEL_77b9a662058d4f0092c8591f22cefa8a"
}
},
"d26fbd7fae384acd99c8e7f86c114ac5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d310e561293f4549a9d8113003e562f5": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"d3af2df9afa341a8bead80efe2317c99": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d4a9768cfee14905af609f15c84a8d6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d4b010480ccc4b23866417e77b207fc4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Curtain",
"layout": "IPY_MODEL_d26fbd7fae384acd99c8e7f86c114ac5",
"max": 160,
"style": "IPY_MODEL_78bd2418a20f44c882ac04b1c5bbfc59",
"value": 80
}
},
"d54a887339254b509639cf0979c5acfd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_05a8dcbf1fea40399e329b404876098a",
"IPY_MODEL_87bdd5124c1a41f6aa4489a0341da127"
],
"layout": "IPY_MODEL_6b3e7abe049b4758890757016db83bb0"
}
},
"d54f6f7b8d194d348b5ef1bc115b36ca": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasModel",
"state": {
"_canvas_manager": "IPY_MODEL_e562f3da4ed347cfa6a5e8b311ab39bc",
"_model_module_version": "^0.13",
"_view_count": 1,
"_view_module_version": "^0.13",
"height": 160,
"layout": "IPY_MODEL_a7accc8e8464490983a1271228efd031",
"width": 160
}
},
"d61fa86c560b4e1aabc078bf35d5d6aa": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"d6b6ea5b996843c29de445dda85f13a8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_5b97a930919d483ba43f716267b9b530"
],
"layout": "IPY_MODEL_72a79b1aca73499ea7461686df655f23"
}
},
"d6c198455f6e4b07b84d43649a6e64e4": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"d6c2e138b70f4708b0a723da9a8eb21a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d93b936ce41d48809e4a62359375fa54": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_14a4777399e543a1ba03489ea36edbce",
"IPY_MODEL_6ace488cde3e4c8da3a9f3b1f4ce7c19",
"IPY_MODEL_05912c21290a48f8aee03e5af828f6d1",
"IPY_MODEL_16ce08b14fb643bbb6cef7f3f0feb157",
"IPY_MODEL_6f77fda468814012ad3f71bf2b2de548",
"IPY_MODEL_bb0e6485777440ad97bf01e5ff39788e",
"IPY_MODEL_11f226286ce24b28bf2479da89c1668c",
"IPY_MODEL_687dd9b07a4e4a5189727504163893be",
"IPY_MODEL_15a04762f2df44f99287ccc1ca13516d",
"IPY_MODEL_f74721c7d13c4e6193d64808abb1490e",
"IPY_MODEL_8495bad86fa44ee983465469d8d408ae",
"IPY_MODEL_6b6b459123af491fa4dc5ad548a68e11",
"IPY_MODEL_5a12cc3b4a2a4e3990e61e83deb92993",
"IPY_MODEL_f47dbc9fb129446597f28bcaa5b765ff",
"IPY_MODEL_a7e8109a56724a15bcd75b36fe32db75"
],
"layout": "IPY_MODEL_c9313c0a45bd41729a1f40154f8d2046"
}
},
"d97ddfa1e03b4a49be5f7abe3a81ee3f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d9a2574bba5142729a1a980653a607d7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"d9cb90f1af5740269bf36daaaed2dec2": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_9aa7ddf881844256aa1587104e0c3f49",
"style": "IPY_MODEL_e8010a5e3c7d40e882c9c46f8d0ad39b",
"value": "sobel( image=no_image, mask=no_image)"
}
},
"d9cf29a6e5e94aada8d0bf3071ce1d3b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d9dbbfc6d67b41f6985b5fa69a3176a8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"d9e63f2caaae4094ac8fe49692380690": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"dab00b457b1e4649a4df09e4539f4385": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"db634e1123284e4b8bc417d5a99f72ad": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_5f941f15b11744a683cefa5d1363fef5",
"style": "IPY_MODEL_ed0eeebe51674800b543eff5bbcb0f81",
"value": "gaussian(..., sigma=15.0)"
}
},
"dcb0f2d3491442f09574bdcd2618b43a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"dd03b29e62c441b8aec5fe340baacc8e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_764fd5d08d2e4978a79a218a248bfdce",
"max": 119,
"style": "IPY_MODEL_84823d2f4dfc4b9085ea9550656d7d98",
"value": 60
}
},
"de44bbe5b1764b38bd0a281e7b97babf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e11003e424664add8fa4ead412797d33": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e1ab4a4c05d845e691d271583c8f097d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e1e14dc449cd4e778ac7fd6985d29e29": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_24c5ddfb5e9e4dffad1ea5ae7dcb4aec"
],
"layout": "IPY_MODEL_c3989996443046fcb6660e969f123f2a"
}
},
"e2400697577e4cf08e3fe30d049c7559": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "CheckboxModel",
"state": {
"description": "show_labels",
"disabled": false,
"layout": "IPY_MODEL_fc0b26f9af6e4142a2ab1fb1e5f0ce5d",
"style": "IPY_MODEL_844d9825b3bc429a8f4341a2b17bd272",
"value": true
}
},
"e28b1f41ee2d4f2aaea9081d769ed4fa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e3f1746a51374136948226d278241465": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e40efcef408541c0988bf2be6e1b6d86": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e4b903cec6d64403ae8cd827eefc32fd": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_781c86f289c04577b57d866af5e5bef3",
"style": "IPY_MODEL_95f83ec14471443e855b7ba7d1e12337",
"value": "[]:"
}
},
"e52483b770ea45c7ab611c2201a2f04f": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"e562f3da4ed347cfa6a5e8b311ab39bc": {
"model_module": "ipycanvas",
"model_module_version": "^0.13",
"model_name": "CanvasManagerModel",
"state": {
"_model_module_version": "^0.13",
"_view_module": null,
"_view_module_version": ""
}
},
"e68674b0821c401baedc5f2261a01c75": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"e7166c0b664646569159fb8d71531aac": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DescriptionStyleModel",
"state": {
"description_width": ""
}
},
"e754554bd207468480cb806989474d81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_8ef3257c80ef48fba2be639c71634a5f"
],
"layout": "IPY_MODEL_6c93c1c49a1b4787ae0373c362f2bf0b"
}
},
"e7759002a78a43e185d128faa3375e99": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "label_image",
"index": 0,
"layout": "IPY_MODEL_26ec85cc493a4738bda325bd25596fcd",
"style": "IPY_MODEL_c2139789e13f4a0bb04f0ac28cd2f380"
}
},
"e8010a5e3c7d40e882c9c46f8d0ad39b": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"e9f518a74a2b4c88b2396f11c90c8d6d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_53cd4539efe84c479b587ff2e1c3317b"
],
"layout": "IPY_MODEL_4933dd6f1da9428596f41e433ced7720"
}
},
"ec2f15f55b1b409986c44bf9ad0073a0": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_45b40b41462340639affa66f31cb42e9",
"IPY_MODEL_ce5064de008a4182ba1f0a6c4ce3aa7b",
"IPY_MODEL_0ac84140126241d79289ffc5d24c7df8",
"IPY_MODEL_6dc43daeaf274fa8a64a37dbb1028563",
"IPY_MODEL_c390f729eaa14fae850b3eec9837a83d",
"IPY_MODEL_59d7af786b50492fa6715b8d88cf5b4b"
],
"layout": "IPY_MODEL_12ccaff7efc74800ba3de34beda9bc6d"
}
},
"ed0eeebe51674800b543eff5bbcb0f81": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"edb566bc883342b39ff4bdf5ad5c71c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ee3fd99663274ef9a025f39038f5a382": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_a8127cb266644b819f678c220ef001f5"
],
"layout": "IPY_MODEL_f04078dbef4c49baa42a040ddcdbdbd3"
}
},
"ee6bd653f58c43108388530bbfa7ab80": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_93eaa60b63c6439c9cd8e0649f9495f3",
"max": 253,
"style": "IPY_MODEL_a18fdd11373d440b93074f4b42ecaba7",
"value": 127
}
},
"ef5cb4483e0b4c958f28d2c71c9a720f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f04078dbef4c49baa42a040ddcdbdbd3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f05ec1b627464357826e1f13b3d0c5f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "mask",
"index": 0,
"layout": "IPY_MODEL_528db004b6f24d30832ac604ab0fb2ba",
"style": "IPY_MODEL_4dba7501f80d4ff4a7261b9d7bd67c06"
}
},
"f08e2763d06c4eda8634b4fdcea9f717": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_67c5d21a715d4f14b8259d5a7d8457c8",
"style": "IPY_MODEL_bf69e63c6ac5463ab33c87a70bf0dc71",
"value": "gaussian( image=no_image, sigma=1.0)"
}
},
"f3033b9aec044cee89259afe7f5b1bec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "DropdownModel",
"state": {
"_options_labels": [
"no_image",
"image",
"labels",
"modified_image",
"slice_image",
"binary",
"image_stack",
"labels_stack"
],
"description": "image",
"index": 0,
"layout": "IPY_MODEL_79e8752526224baaa28deacc8a7494b1",
"style": "IPY_MODEL_23686b53a2ff420fba288edfb7c1939c"
}
},
"f39e312f00054472992a90fd03b5dd47": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonStyleModel",
"state": {
"font_family": null,
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"f3c2959eb515463582d55b9786c08dcb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_a891253724044c84b8eafd3b511af9a3"
],
"layout": "IPY_MODEL_a047edf1315047df9fb06e6937dbc0b0"
}
},
"f438b44a61f04606a81d0ce42b7272a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f47dbc9fb129446597f28bcaa5b765ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "IntSliderModel",
"state": {
"behavior": "drag-tap",
"description": "Slice",
"layout": "IPY_MODEL_b3d9deef2c4a46a69528b38026e75467",
"max": 10,
"style": "IPY_MODEL_d310e561293f4549a9d8113003e562f5",
"value": 5
}
},
"f57cfe09e0ac44f6a90f33ed0c07de40": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f63cf665f5c0469fb6df83bcf4897322": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"f6df7fb28a0748c18bc991e0f6fc7dec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"f74721c7d13c4e6193d64808abb1490e": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_b2e0a17ae54f4b4ebd5a7dbab55f17b2",
"IPY_MODEL_ff6aa142a62849b4bfa5e22411d015f8"
],
"layout": "IPY_MODEL_2ae1c0c50b3f409eb7ab04c927c375d1"
}
},
"f81b4aba0ae8450c8484de5875cb33e4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"f8bf85d79f3e4b10be05309f00ed2403": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"f9b9bb2c7e974c679055d7e2a330551b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"fb0870964f48454da253abfea44f5c5c": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelStyleModel",
"state": {
"description_width": "",
"font_family": "Courier",
"font_size": null,
"font_style": null,
"font_variant": null,
"font_weight": null,
"text_color": null,
"text_decoration": null
}
},
"fc0b26f9af6e4142a2ab1fb1e5f0ce5d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"fc1e18805c704f0fa850aaa67ff449b3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "ButtonModel",
"state": {
"description": "-",
"layout": "IPY_MODEL_9e5f09d6204646ce91bdc7bedd13a3b8",
"style": "IPY_MODEL_5ef245b77b2840be80805af9ef71a5c6",
"tooltip": null
}
},
"fcac65df800e44f481e32f410684c0ec": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_e754554bd207468480cb806989474d81",
"IPY_MODEL_4a5458af707a4de880b6a62ca83dc1a7",
"IPY_MODEL_9645e1de6789402c8be6100743848c0d"
],
"layout": "IPY_MODEL_238ca176e50249e5a9d04b24327eac1e"
}
},
"fd1edc17b6b948c5bc7720d23db71487": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"fd4229b28ff54051b8150bbc26c1a182": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "VBoxModel",
"state": {
"children": [
"IPY_MODEL_bfe8eb7bf3e94753a873ebed5ea94e2c"
],
"layout": "IPY_MODEL_bff5ba1312d04355996aab5cbf3e5582"
}
},
"fd582e9469f845009a27a7af309074f3": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "HBoxModel",
"state": {
"children": [
"IPY_MODEL_14936242449742b9af05683e4768313f"
],
"layout": "IPY_MODEL_7add98d9ec8a4d8aade80e1115fb5b9d"
}
},
"fd7ec3035ac649dba8f646dc012585a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"fe471884d6e047b2b677c5d00c4824d6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"display": "none"
}
},
"fe57e18fb3b640348753bd077aca85b6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {}
},
"ff491939644a4929942cabf012a724c8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "SliderStyleModel",
"state": {
"description_width": ""
}
},
"ff6aa142a62849b4bfa5e22411d015f8": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "LabelModel",
"state": {
"layout": "IPY_MODEL_585ec350f0384e3988037a31e076881e",
"style": "IPY_MODEL_8b5d6c0abc3e40fb891fc1ab283ba278",
"value": "maximum( image=no_image, footprint=disk(0), mask=no_image)"
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}