##現象
ここの
https://colour.readthedocs.io/en/develop/_modules/colour/notation/munsell.html
の
xyY_to_munsell_colour()を使用したいのですが、使用できません。
##遭遇しているエラー
NameError: name 'xyY_to_munsell_colour' is not defined
##やったこと
!pip install --user colour-science from colour.notation import MUNSELL_COLOURS_ALL iro = [0.34926342621520173, 0.3360556274451555, 0.8113854901960784] xyY_to_munsell_colour(iro)
##リファレンス
def xyY_to_munsell_colour(xyY, hue_decimals=1, value_decimals=1, chroma_decimals=1): """ Converts from *CIE xyY* colourspace to *Munsell* colour. Parameters ---------- xyY : array_like, (3,) *CIE xyY* colourspace array. hue_decimals : int Hue formatting decimals. value_decimals : int Value formatting decimals. chroma_decimals : int Chroma formatting decimals. Returns ------- str *Munsell* colour. Notes ----- +------------+-----------------------+---------------+ | **Domain** | **Scale - Reference** | **Scale - 1** | +============+=======================+===============+ | ``xyY`` | [0, 1] | [0, 1] | +------------+-----------------------+---------------+ References ---------- :cite:`Centorea`, :cite:`Centore2012a` Examples -------- >>> xyY = np.array([0.38736945, 0.35751656, 0.59362000]) >>> xyY_to_munsell_colour(xyY) '4.2YR 8.1/5.3' """ specification = to_domain_10( xyY_to_munsell_specification(xyY), _domain_range_scale_factor()) shape = list(specification.shape) munsell_colour = [ munsell_specification_to_munsell_colour( a, hue_decimals, value_decimals, chroma_decimals) for a in specification.reshape([-1, 4]) ] munsell_colour = np.array(munsell_colour).reshape(shape[:-1]) munsell_colour = str(munsell_colour) if shape == [4] else munsell_colour return munsell_colour
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。