-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from SarthakJariwala/v0.4.x
Dynamic indexing in `ImageGrid`; `map_func` to transform image data
- Loading branch information
Showing
15 changed files
with
878 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ | |
} | ||
], | ||
"source": [ | ||
"f = isns.imghist(img)" | ||
"f = isns.imghist(img, describe=True)" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,55 @@ | ||
Tutorial | ||
======== | ||
|
||
2-D Image Visualization | ||
----------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
:maxdepth: 2 | ||
|
||
Image Visualization <Tutorial/Image Visualization.ipynb> | ||
RGB Images <Tutorial/RGB Images.ipynb> | ||
|
||
|
||
Visualize the Distribution within Image Data | ||
-------------------------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
Visualize Image Distribution <Tutorial/Image Distribution.ipynb> | ||
Visualize 3-D images <Tutorial/Image Grid.ipynb> | ||
|
||
|
||
Working with RGB Images | ||
----------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
RGB Images <Tutorial/RGB Images.ipynb> | ||
|
||
|
||
Working with Multi-dimensional Images | ||
------------------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
Multi-dimensional images <Tutorial/Multi Dim Images.ipynb> | ||
|
||
|
||
Working with a Collection of Images | ||
----------------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
Collection of images <Tutorial/Image Collection.ipynb> | ||
|
||
|
||
Image Filters - Individual Filters and Exploring Relationships between Parameters | ||
--------------------------------------------------------------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
Applying Image Filters <Tutorial/Image Filters.ipynb> |
Oops, something went wrong.