Как заполнить многоугольник пользовательским штриховкой в matplotlib?

Я использую python и matplotlib для создания нескольких закрытых полигонов. Затем мне нужно заполнить их люком, что можно сделать через set_hatch.

http://matplotlib.org/api/artist_api.html#matplotlib.patches.Patch.set_hatch

http://matplotlib.org/examples/pylab_examples/hatch_demo.html

к сожалению, я работаю с изображениями в оттенках серого, и мне нужно больше люков, чем по умолчанию - я бы предпочел предоставьте растровое изображение (или аналогичное изображение), которое может быть выложено плиткой вместо использования этих люков с различной плотностью.

Я открыт для других библиотек python (pyglet, pygame, PIL и т. д.), Однако я бы предпочел, чтобы решение было в python.

1 ответов


Вы можете подкласс matplotlib.hatch.Shapes и определите пользовательский штрихкод на основе любого опорного пути, нарисованного внутри единичного квадрата [[-0.5, 0.5] x [-0.5, 0.5]].

предварительный:

import numpy as np
import matplotlib.hatch
import matplotlib.pyplot as plt
from matplotlib.patches import Ellipse, Polygon


house_path = Polygon(
    [[-0.3, -0.4], [0.3, -0.4], [0.3, 0.1], [0., 0.4], [-0.3, 0.1]],
    closed=True, fill=False).get_path()

class CustomHatch(matplotlib.hatch.Shapes):
    """
    Custom hatches defined by a path drawn inside [-0.5, 0.5] square.
    Identifier 'c'.
    """
    filled = True
    size = 1.0
    path = house_path

    def __init__(self, hatch, density):
        self.num_rows = (hatch.count('c')) * density
        self.shape_vertices = self.path.vertices
        self.shape_codes = self.path.codes
        matplotlib.hatch.Shapes.__init__(self, hatch, density)

matplotlib.hatch._hatch_types.append(CustomHatch)

fig = plt.figure()
ax = fig.add_subplot(111)

ellipse = ax.add_patch(Ellipse((0.5, 0.5), 0.3, 0.5, fill=False))
ellipse.set_hatch('c')
ellipse.set_color('red')
plt.show()

даем:

enter image description here