假设我们有一个我们以某种方式通过openCV修改的图像:
现在我们很乐意申请Gradient Map (like one we can apply via photoshop):
所以我想知道如何通过openCV应用渐变映射(彩虹色)?
答案 0 :(得分:13)
这是一种使用Python创建假/伪彩色图像的方法,转换为c ++应该非常简单。概述:
虽然有几次捕获......
从:到:
如果这对改变很重要,我们可以通过偏移所有色调元素并将它们包裹在180左右(否则它会饱和)来实现。代码通过在此截止点处屏蔽图像然后适当地偏移来实现此目的。使用120的偏移量生成您的色阶:
从:到:
并且以这种方式处理的图像似乎与你的相匹配(最后)。
180 / 256.0
使用import cv
image_bw = cv.LoadImage("TfBmw.jpg", cv.CV_LOAD_IMAGE_GRAYSCALE)
image_rgb = cv.LoadImage("TfBmw.jpg")
#create the image arrays we require for the processing
hue=cv.CreateImage((image_rgb.width,image_rgb.height), cv.IPL_DEPTH_8U, 1)
sat=cv.CreateImage((image_rgb.width,image_rgb.height), cv.IPL_DEPTH_8U, 1)
val=cv.CreateImage((image_rgb.width,image_rgb.height), cv.IPL_DEPTH_8U, 1)
mask_1=cv.CreateImage((image_rgb.width,image_rgb.height), cv.IPL_DEPTH_8U, 1)
mask_2=cv.CreateImage((image_rgb.width,image_rgb.height), cv.IPL_DEPTH_8U, 1)
#convert to cylindrical HSV color space
cv.CvtColor(image_rgb,image_rgb,cv.CV_RGB2HSV)
#split image into component channels
cv.Split(image_rgb,hue,sat,val,None)
#rescale image_bw to degrees
cv.ConvertScale(image_bw, image_bw, 180 / 256.0)
#set the hue channel to the greyscale image
cv.Copy(image_bw,hue)
#set sat and val to maximum
cv.Set(sat, 255)
cv.Set(val, 255)
#adjust the pseudo color scaling offset, 120 matches the image you displayed
offset=120
cv.CmpS(hue,180-offset, mask_1, cv.CV_CMP_GE)
cv.CmpS(hue,180-offset, mask_2, cv.CV_CMP_LT)
cv.AddS(hue,offset-180,hue,mask_1)
cv.AddS(hue,offset,hue,mask_2)
#merge the channels back
cv.Merge(hue,sat,val,None,image_rgb)
#convert back to RGB color space, for correct display
cv.CvtColor(image_rgb,image_rgb,cv.CV_HSV2RGB)
cv.ShowImage('image', image_rgb)
# cv.SaveImage('TfBmw_120.jpg',image_rgb)
cv.WaitKey(0)
处理您的图片:
答案 1 :(得分:1)
现在存在名为applyColorMap的openCV函数,这使得这个过程变得微不足道。以下代码将起到作用
image_cm = cv2.applyColorMap(image, cv2.COLORMAP_JET))
这就是结果: