-
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 #42 from SarthakJariwala/v0.4.x
Update example gallery and readme
- Loading branch information
Showing
32 changed files
with
161 additions
and
152 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ sdist/* | |
docs/api/* | ||
docs/_rst/* | ||
docs/_build/* | ||
docs/auto_examples/* | ||
cover/* | ||
MANIFEST | ||
|
||
|
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
sphinx==2.3.1 | ||
sphinx==3.2.1 | ||
sphinx-gallery==0.8.0 | ||
sphinx_bootstrap_theme==0.7.1 | ||
sphinxcontrib-images==0.9.2 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Example gallery | ||
=============== | ||
|
||
Seaborn-image example gallery |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
""" | ||
Fast Fourier Transform | ||
====================== | ||
""" | ||
|
||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer") | ||
|
||
_ = isns.fftplot(img, cmap="viridis", cbar=False, despine=False) |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
""" | ||
Image Filter | ||
============ | ||
""" | ||
|
||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer") | ||
|
||
_ = isns.filterplot(img, "median", size=5, cmap="ice", despine=False) |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
""" | ||
FilterGrid | ||
========== | ||
""" | ||
|
||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer") | ||
|
||
g = isns.FilterGrid( | ||
img, | ||
"gaussian", | ||
row="sigma", | ||
col="mode", | ||
sigma=[2, 3, 4], | ||
mode=["reflect", "nearest", "mirror"], | ||
despine=False, | ||
cmap="magma", | ||
) |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
Image plot | ||
========== | ||
""" | ||
|
||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer") | ||
img_scale = {"dx": 15, "units": "nm"} | ||
|
||
_ = isns.imgplot(img, dx=15, units="nm", despine=False) |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
""" | ||
Image distribution | ||
================== | ||
""" | ||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer") | ||
|
||
_ = isns.imghist(img, cmap="YlGnBu_r", dx=15, units="nm", despine=False) |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
""" | ||
Outlier correction | ||
================== | ||
""" | ||
|
||
import matplotlib.pyplot as plt | ||
|
||
import seaborn_image as isns | ||
|
||
img = isns.load_image("polymer outliers") | ||
|
||
f, axes = plt.subplots(1, 2) | ||
|
||
_ = isns.imgplot(img, ax=axes[0], cmap="inferno", despine=False) | ||
_ = isns.imgplot( | ||
img, ax=axes[1], robust=True, perc=(2, 99.99), cmap="inferno", despine=False | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.