data
¶Standard test images.
For more images, see
skimage.data.astronaut () |
Colour image of the astronaut Eileen Collins. |
skimage.data.binary_blobs ([length, …]) |
Generate synthetic binary image with several rounded blob-like objects. |
skimage.data.camera () |
Gray-level “camera” image. |
skimage.data.checkerboard () |
Checkerboard image. |
skimage.data.chelsea () |
Chelsea the cat. |
skimage.data.clock () |
Motion blurred clock. |
skimage.data.coffee () |
Coffee cup. |
skimage.data.coins () |
Greek coins from Pompeii. |
skimage.data.expected_warnings (matching) |
Context for use in testing to catch known warnings matching regexes |
skimage.data.horse () |
Black and white silhouette of a horse. |
skimage.data.hubble_deep_field () |
Hubble eXtreme Deep Field. |
skimage.data.img_as_bool (image[, force_copy]) |
Convert an image to boolean format. |
skimage.data.immunohistochemistry () |
Immunohistochemical (IHC) staining with hematoxylin counterstaining. |
skimage.data.imread (fname[, as_grey, …]) |
Load an image from file. |
skimage.data.load (f[, as_grey]) |
Load an image file located in the data directory. |
skimage.data.logo () |
Scikit-image logo, a RGBA image. |
skimage.data.moon () |
Surface of the moon. |
skimage.data.page () |
Scanned page. |
skimage.data.rocket () |
Launch photo of DSCOVR on Falcon 9 by SpaceX. |
skimage.data.stereo_motorcycle () |
Rectified stereo image pair with ground-truth disparities. |
skimage.data.text () |
Gray-level “text” image used for corner detection. |
skimage.data.use_plugin (name[, kind]) |
Set the default plugin for a specified operation. |
skimage.data.np |
skimage.data.
astronaut
()[source]¶Colour image of the astronaut Eileen Collins.
Photograph of Eileen Collins, an American astronaut. She was selected as an astronaut in 1992 and first piloted the space shuttle STS-63 in 1995. She retired in 2006 after spending a total of 38 days, 8 hours and 10 minutes in outer space.
This image was downloaded from the NASA Great Images database <https://flic.kr/p/r9qvLn>`__.
No known copyright restrictions, released into the public domain.
Returns: | astronaut : (512, 512, 3) uint8 ndarray
|
---|
skimage.data.
binary_blobs
(length=512, blob_size_fraction=0.1, n_dim=2, volume_fraction=0.5, seed=None)[source]¶Generate synthetic binary image with several rounded blob-like objects.
Parameters: | length : int, optional
blob_size_fraction : float, optional
n_dim : int, optional
volume_fraction : float, default 0.5
seed : int, optional
|
---|---|
Returns: | blobs : ndarray of bools
|
Examples
>>> from skimage import data
>>> data.binary_blobs(length=5, blob_size_fraction=0.2, seed=1)
array([[ True, False, True, True, True],
[ True, True, True, False, True],
[False, True, False, True, True],
[ True, False, False, True, True],
[ True, False, False, False, True]], dtype=bool)
>>> blobs = data.binary_blobs(length=256, blob_size_fraction=0.1)
>>> # Finer structures
>>> blobs = data.binary_blobs(length=256, blob_size_fraction=0.05)
>>> # Blobs cover a smaller volume fraction of the image
>>> blobs = data.binary_blobs(length=256, volume_fraction=0.3)
skimage.data.
checkerboard
()[source]¶Checkerboard image.
Checkerboards are often used in image calibration, since the corner-points are easy to locate. Because of the many parallel edges, they also visualise distortions particularly well.
Returns: | checkerboard : (200, 200) uint8 ndarray
|
---|
skimage.data.
chelsea
()[source]¶Chelsea the cat.
An example with texture, prominent edges in horizontal and diagonal directions, as well as features of differing scales.
Returns: | chelsea : (300, 451, 3) uint8 ndarray
|
---|
Notes
No copyright restrictions. CC0 by the photographer (Stefan van der Walt).
skimage.data.
clock
()[source]¶Motion blurred clock.
This photograph of a wall clock was taken while moving the camera in an aproximately horizontal direction. It may be used to illustrate inverse filters and deconvolution.
Released into the public domain by the photographer (Stefan van der Walt).
Returns: | clock : (300, 400) uint8 ndarray
|
---|
skimage.data.
coffee
()[source]¶Coffee cup.
This photograph is courtesy of Pikolo Espresso Bar. It contains several elliptical shapes as well as varying texture (smooth porcelain to course wood grain).
Returns: | coffee : (400, 600, 3) uint8 ndarray
|
---|
Notes
No copyright restrictions. CC0 by the photographer (Rachel Michetti).
skimage.data.
coins
()[source]¶Greek coins from Pompeii.
This image shows several coins outlined against a gray background. It is especially useful in, e.g. segmentation tests, where individual objects need to be identified against a background. The background shares enough grey levels with the coins that a simple segmentation is not sufficient.
Returns: | coins : (303, 384) uint8 ndarray
|
---|
Notes
This image was downloaded from the Brooklyn Museum Collection.
No known copyright restrictions.
skimage.data.
expected_warnings
(matching)[source]¶Context for use in testing to catch known warnings matching regexes
Parameters: | matching : list of strings or compiled regexes
|
---|
Notes
Uses all_warnings to ensure all warnings are raised. Upon exiting, it checks the recorded warnings for the desired matching pattern(s). Raises a ValueError if any match was not found or an unexpected warning was raised. Allows for three types of behaviors: and, or, and optional matches. This is done to accomodate different build enviroments or loop conditions that may produce different warnings. The behaviors can be combined. If you pass multiple patterns, you get an orderless and, where all of the warnings must be raised. If you use the | operator in a pattern, you can catch one of several warnings. Finally, you can use |AZ in a pattern to signify it as optional.
Examples
>>> from skimage import data, img_as_ubyte, img_as_float
>>> with expected_warnings(['precision loss']):
... d = img_as_ubyte(img_as_float(data.coins()))
skimage.data.
horse
()[source]¶Black and white silhouette of a horse.
This image was downloaded from openclipart <http://openclipart.org/detail/158377/horse-by-marauder>
Released into public domain and drawn and uploaded by Andreas Preuss (marauder).
Returns: | horse : (328, 400) bool ndarray
|
---|
skimage.data.
hubble_deep_field
()[source]¶Hubble eXtreme Deep Field.
This photograph contains the Hubble Telescope’s farthest ever view of the universe. It can be useful as an example for multi-scale detection.
Returns: | hubble_deep_field : (872, 1000, 3) uint8 ndarray
|
---|
Notes
This image was downloaded from HubbleSite.
The image was captured by NASA and may be freely used in the public domain.
skimage.data.
img_as_bool
(image, force_copy=False)[source]¶Convert an image to boolean format.
Parameters: | image : ndarray
force_copy : bool, optional
|
---|---|
Returns: | out : ndarray of bool (bool_)
|
Notes
The upper half of the input dtype’s positive range is True, and the lower half is False. All negative values (if present) are False.
skimage.data.
immunohistochemistry
()[source]¶Immunohistochemical (IHC) staining with hematoxylin counterstaining.
This picture shows colonic glands where the IHC expression of FHL2 protein is revealed with DAB. Hematoxylin counterstaining is applied to enhance the negative parts of the tissue.
This image was acquired at the Center for Microscopy And Molecular Imaging (CMMI).
No known copyright restrictions.
Returns: | immunohistochemistry : (512, 512, 3) uint8 ndarray
|
---|
skimage.data.
imread
(fname, as_grey=False, plugin=None, flatten=None, **plugin_args)[source]¶Load an image from file.
Parameters: | fname : string
as_grey : bool
plugin : str
|
---|---|
Returns: | img_array : ndarray
|
Other Parameters: | |
plugin_args : keywords
flatten : bool
plugin_args : keywords
|
skimage.data.
rocket
()[source]¶Launch photo of DSCOVR on Falcon 9 by SpaceX.
This is the launch photo of Falcon 9 carrying DSCOVR lifted off from SpaceX’s Launch Complex 40 at Cape Canaveral Air Force Station, FL.
Returns: | rocket : (427, 640, 3) uint8 ndarray
|
---|
Notes
This image was downloaded from SpaceX Photos.
The image was captured by SpaceX and released in the public domain.
skimage.data.
stereo_motorcycle
()[source]¶Rectified stereo image pair with ground-truth disparities.
The two images are rectified such that every pixel in the left image has its corresponding pixel on the same scanline in the right image. That means that both images are warped such that they have the same orientation but a horizontal spatial offset (baseline). The ground-truth pixel offset in column direction is specified by the included disparity map.
The two images are part of the Middlebury 2014 stereo benchmark. The dataset was created by Nera Nesic, Porter Westling, Xi Wang, York Kitajima, Greg Krathwohl, and Daniel Scharstein at Middlebury College. A detailed description of the acquisition process can be found in [R181182].
The images included here are down-sampled versions of the default exposure images in the benchmark. The images are down-sampled by a factor of 4 using the function skimage.transform.downscale_local_mean. The calibration data in the following and the included ground-truth disparity map are valid for the down-sampled images:
Focal length: 994.978px
Principal point x: 311.193px
Principal point y: 254.877px
Principal point dx: 31.086px
Baseline: 193.001mm
Returns: | img_left : (500, 741, 3) uint8 ndarray
img_right : (500, 741, 3) uint8 ndarray
disp : (500, 741, 3) float ndarray
|
---|
Notes
The original resolution images, images with different exposure and lighting, and ground-truth depth maps can be found at the Middlebury website [R182182].
References
[R181182] | (1, 2) D. Scharstein, H. Hirschmueller, Y. Kitajima, G. Krathwohl, N. Nesic, X. Wang, and P. Westling. High-resolution stereo datasets with subpixel-accurate ground truth. In German Conference on Pattern Recognition (GCPR 2014), Muenster, Germany, September 2014. |
[R182182] | (1, 2) http://vision.middlebury.edu/stereo/data/scenes2014/ |
skimage.data.
text
()[source]¶Gray-level “text” image used for corner detection.
Returns: | text : (172, 448) uint8 ndarray
|
---|
Notes
This image was downloaded from Wikipedia <http://en.wikipedia.org/wiki/File:Corner.png>`__.
No known copyright restrictions, released into the public domain.
skimage.data.
use_plugin
(name, kind=None)[source]¶Set the default plugin for a specified operation. The plugin will be loaded if it hasn’t been already.
Parameters: | name : str
kind : {‘imsave’, ‘imread’, ‘imshow’, ‘imread_collection’, ‘imshow_collection’}, optional
|
---|
See also
available_plugins
Examples
To use Matplotlib as the default image reader, you would write:
>>> from skimage import io
>>> io.use_plugin('matplotlib', 'imread')
To see a list of available plugins run io.available_plugins
. Note that
this lists plugins that are defined, but the full list may not be usable
if your system does not have the required libraries installed.