3

我有一些对比度非常微弱且有相当多噪点的成像数据,当我用线性色标显示它时,它的显示效果不佳。在 imageJ 或 Photoshop 等成像软件中,可以调整色调曲线以非线性方式提高对比度,并有效地拉伸某些感兴趣区域的比例以查看更多细节。

作为这种非线性调整参数的最简单情况,@BrianDiggs 指出了 的bias参数colorRamp,它仍然需要数据的先前转换在 [0, 1] 中。我想将非线性比例推广到除 之外的其他函数x^gamma,因此下面的函数实际上并未使用biasin ,colorRamp而是在数据端进行转换。

我觉得我在重新发明轮子;R中是否已经有这种用于连续色标的工具?

4

1 回答 1

0

这是一个可能的解决方案,

set.seed(123)
x <- sort(runif(1e4, min=-20 , max=120))

library(scales) # rescale function

curve_pal <- function (x, colours = rev(blues9), 
                       fun = function(x) x^gamma,
                       n=10, gamma=1) 
{
    # function that maps [0,1] -> colours
    palfun <- colorRamp(colors=colours)

    # now divide the data in n equi-spaced regions, mapped linearly to [0,1]
    xcuts <- cut(x, breaks=seq(min(x), max(x), length=n))
    xnum <- as.numeric(xcuts)

    # need to work around NA values that make colorRamp/rgb choke
    testNA <- is.na(xnum)
    xsanitised <- ifelse(testNA, 0, fun(rescale(xnum))) 

    # non-NA values in [0,1] get assigned their colour
    ifelse(testNA, NA, rgb(palfun(xsanitised), maxColorValue=255))
}

library(gridExtra)
grid.newpage()
grid.arrange(rasterGrob(curve_pal(x, gamma=0.5), wid=1, heig=1, int=F),
             rasterGrob(curve_pal(x, gamma=1), wid=1, heig=1, int=F), 
             rasterGrob(curve_pal(x, gamma=2), wid=1, heig=1, int=F), 
             nrow=1)

在此处输入图像描述

于 2016-03-01T08:34:59.627 回答