简体   繁体   中英

How to mark cells in matplotlib.pyplot.imshow (drawing cell borders)

I have a small 2d vector to display:

import matplotlib.pyplot as plt
import numpy as np

img = np.random.rand(4,10)
plt.imshow(img, cmap='Reds')

As folllow:

在此处输入图片说明

But now I want to mark a specific cell, in order to focus the reader on that cell. Because this is of specific interest...

Therefore something like a border of this cell would be nice:

在此处输入图片说明

Does someone know how to archive this with matplotlib in a convenient way?

Put a rectangle at the position of the pixel you want to highlight.

import matplotlib.pyplot as plt
import numpy as np

def highlight_cell(x,y, ax=None, **kwargs):
    rect = plt.Rectangle((x-.5, y-.5), 1,1, fill=False, **kwargs)
    ax = ax or plt.gca()
    ax.add_patch(rect)
    return rect

img = np.random.rand(4,10)
plt.imshow(img, cmap='Reds')

highlight_cell(2,1, color="limegreen", linewidth=3)

plt.show()

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM