face-makeup.PyTorch
face-makeup.PyTorch copied to clipboard
What is color code to get this hair color to black? i have tried different color codes but not able to change the hair color to black.
What is color code to get this hair color to black? i have tried different color codes but not able to change the hair color to black
I have same problem
same problem here plz help
@daxjain789 @Vamshigoud784 @3shry is you see the link https://www.rapidtables.com/convert/color/rgb-to-hsv.html You can notice that for some of the colors the H and S channel percentages are 0. In the code while changing the mask to hsv format, only first channel is replaced . So if you change these lines from image_hsv[:, :, 0:1] = tar_hsv[:, :, 0:1] and image_hsv[:, :, 0:2] = tar_hsv[:, :, 0:2] to image_hsv[mask!=0] = tar_hsv[mask!=0], you can use this to get the desired colors.