基于字符数组的R中像素图像

基于字符数组的R中像素图像,r,image,bitmap,raster,R,Image,Bitmap,Raster,通过将每个输入字符编码为图像中的特定颜色,我生成了一个基于像素的图像。例如,在inputtxt中,我更改了函数以支持多字符: library(png) library(tiff) library(abind) # function which plots the image createImage <- function(txt,charToColorMap,destinationFile,format=c('png','tiff'),debugPlot=FALSE,unused.cha

通过将每个输入字符编码为图像中的特定颜色,我生成了一个基于像素的图像。例如,在input
txt中,我更改了函数以支持多字符:

library(png)
library(tiff)
library(abind)

# function which plots the image
createImage <- function(txt,charToColorMap,destinationFile,format=c('png','tiff'),debugPlot=FALSE,unused.char='#'){

  if(nchar(unused.char) != 1){
    stop('unused.char must be a single character, and you should be sure that it will never be present in your text')
  }



  # helper function which finds all the divisors of a number
  divisors <- function(x){
    y <- seq_len(x)
    y[ x%%y == 0 ]
  }

  # split the string in charaters
  chars <- strsplit(txt,'')[[1]]

  # find the most "squared" rectangle that contains all the characters without padding
  d <- divisors(length(chars)) 
  y <- d[length(d) %/% 2]
  x <- length(chars) / y

  # create an array with 4 matrices (or planes) one for each RGBA channel
  RGBAmx <- col2rgb(charToColorMap,alpha=TRUE) / 255
  colorIndexes <- match(chars,names(charToColorMap))

  ######################################
  # MULTIPLE CHAR
  ######################################
  # check if color map contains multiple character names
  multiple <- names(charToColorMap)[nchar(names(charToColorMap)) > 1]
  multiple <- multiple[order(nchar(multiple),decreasing=TRUE)]
  txtForMultiple <- txt
  for(m in multiple){
    idxs <- gregexpr(pattern=m,text=txtForMultiple,fixed=TRUE)[[1]]
    charRanges <- unlist(lapply(idxs,seq,length.out=nchar(m)))
    colorIndexes[charRanges] <- which(names(charToColorMap)==m)[1]
    tmp <- strsplit(txtForMultiple,'')[[1]]
    tmp[charRanges] <- unused.char
    txtForMultiple <- paste(tmp,collapse='')
  }
  #########################################################

  colorIndexesR <- matrix(RGBAmx['red',colorIndexes],nrow=y,ncol=x,byrow = TRUE)
  colorIndexesG <- matrix(RGBAmx['green',colorIndexes],nrow=y,ncol=x,byrow = TRUE)
  colorIndexesB <- matrix(RGBAmx['blue',colorIndexes],nrow=y,ncol=x,byrow = TRUE)
  colorIndexesA <- matrix(RGBAmx['alpha',colorIndexes],nrow=y,ncol=x,byrow = TRUE)

  planes <- abind(colorIndexesR,colorIndexesG,colorIndexesB,colorIndexesA,along=3)

  # write the PNG image
  if(format[1] == 'png'){
    writePNG(planes,destinationFile)
  }else if(format[1] == 'tiff'){
    writeTIFF(planes,destinationFile)
  }else{
    stop('usupported format')
  }

  # for debug purpose only we plot the image...
  if(debugPlot){
    mx <- matrix(colorIndexes,nrow=y,ncol=x,byrow = TRUE)
    image(z=t(mx[nrow(mx):1,]),col=charToColorMap)
  }

  invisible()
}
库(png)
图书馆(tiff)
图书馆(abind)
#用于打印图像的函数

createImage请注意,有很多边缘情况…例如。如果地图包含“AAA”=黄色,并且文本中是“XAAAX”,该怎么办?只有前3个“A”的颜色应该不同?现在我想检查2个或3个连续的。在“XAAAAAX”中,前3个AAA为AAA颜色,下2个为AA颜色。谢谢@digEmAll。我会试一试,让你知道结果。谢谢。谢谢@digEmAll。工作得很好。我现在可以在上面做其他事情了。再次感谢。
charToColorMap <- c(A='red',B='blue',C='green',D='black',E='yellow',F='orange',AAA='white')

txt <- "ABACAAAFFEDDADFAFAED"
# please note that unused.char will be used to mark the characters of txt already analyzed
# during the multi-char handling, so it must not be present in txt
createImage(txt,charToColorMap,destinationFile = "test.png",debugPlot=TRUE,unused.char='#')