- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set a colormap of an image in Matplotlib
To set a colormap of an image, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Read an image from a file into an array.
- Pick one channel of your data.
- Display the data as an image, i.e., on a 2D regular raster with "hot" colormap
- Turn off the axes.
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt, image as mimg plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True img = mimg.imread('bird.jpg') lum_img = img[:, :, 0] plt.imshow(lum_img, cmap="hot") plt.axis('off') plt.show()
Output
- Related Articles
- How to set a default colormap in Matplotlib?
- How to extract a subset of a colormap as a new colormap in Matplotlib?
- Add alpha to an existing Matplotlib colormap
- Defining the midpoint of a colormap in Matplotlib
- Set two Matplotlib imshow plots to have the same colormap scale
- Defining a discrete colormap for imshow in Matplotlib
- Extract Matplotlib colormap in hex-format
- How to reverse the colormap of an image to scalar values in Matplotib?
- Plot a histogram with colors taken from colormap in Matplotlib
- How to draw node colormap in NetworkX/Matplotlib?
- How to make the Parula colormap in Matplotlib?
- Matplotlib Plot Lines with Colors through Colormap
- How to increase colormap/linewidth quality in streamplot Matplotlib?
- How to shade points in a scatter based on colormap in Matplotlib?
- How to redefine a color for a specific value in a Matplotlib colormap?

Advertisements