Color rotation in HSV using scikit-image
问题 The aim is to convert a pure red image into any hue of the color wheel. A monochrome image is first converted into a RGB red image, ex: then converted into HSV The hue component is modified by adding an angle value supposed to match the wheel color then the hsv image is back converted into the rgb color space. The problem is that only green or blue image can be obtained (no yellow for an angle~30° for example): The code performed in some ipython cells relies on scikit-image 0.10dev: from