如何用JES程序更改图像颜色?

2024-07-03 06:13:05 发布

您现在位置:Python中文网/ 问答频道 /正文

我的目标是将图片大小加倍,然后将左半部分更改为灰度,然后更改右上半部分的绿色值和右下半部分的蓝色值。我有一些我在教科书中找到的灰度值,但我不确定这是否是我实际使用的值。我也不确定我是用for循环来编程这些不同的值,还是仅仅使用不同的东西

到目前为止,我的代码是:

 def crazyPic(newGreen,newBlue,pic,file):
      show(pic)
      newPic = makeEmptyPicture(getWidth(pic)*2,getHeight((pic)*2
           for x in range(width):
              for y in range(height):
                  for px in getPixel(pic,0,100):
                  nRed = getRed(px) * 0.299
                  nGreen = getGreen(px) * 0.587
                  nBlue = getBlue(px) * 0.114
                  luminance = nRed + nGreen + nBlue
                  setColor(px,makeColor(luminance,luminance,luminance)

Tags: in目标forrange灰度蓝色绿色px
1条回答
网友
1楼 · 发布于 2024-07-03 06:13:05

我不应该给出完整的答案,因为JES是一个专为学生设计的应用程序,但我认为三个月后,一个完整的工作样本可以作为其他人的参考。。。

这应该与您尝试的操作接近:

注意:你对x和y的简单双循环方法是正确的。

def crazyPic(pic, newRed, newGreen, newBlue):

    w = getWidth(pic)
    h = getHeight(pic)
    new_w = w * 2
    new_h = h * 2
    newPic = makeEmptyPicture(w * 2, h * 2)

    for x in range(new_w):
      for y in range(new_h):
          new_px = getPixel(newPic, x, y)

          # Top-left: B&W
          if (x < w) and (y < h):
            px = getPixel(pic, x, y)
            nRed = getRed(px) * newRed #0.299
            nGreen = getGreen(px) * newGreen #0.587
            nBlue = getBlue(px) * newBlue #0.114
            luminance = nRed + nGreen + nBlue
            new_col = makeColor(luminance, luminance, luminance)

          # Top-right
          elif (y < h):
            px = getPixel(pic, x - w, y)
            nRed = getRed(px) * newRed
            new_col = makeColor(nRed, getGreen(px), getBlue(px))

          # Bottom-left
          elif (x < w):
            px = getPixel(pic, x, y - h)
            nGreen = getGreen(px) * newGreen
            new_col = makeColor(getGreen(px), nGreen, getBlue(px))

          # Bottom-right
          else:
            px = getPixel(pic, x - w, y - h)
            nBlue = getBlue(px) * newBlue
            new_col = makeColor(getGreen(px), getBlue(px), nBlue)

          setColor(new_px, new_col)

    return newPic

file = pickAFile()
picture = makePicture(file)
#picture = crazyPic(picture, 0.299, 0.587, 0.114)
# Here, with my favorite r, g, b weights
picture = crazyPic(picture, 0.21, 0.71, 0.07)

writePictureTo(picture, "/home/quartered.jpg")

show(picture)


输出(Antoni Tapies绘制)


enter image description here……来自……enter image description here


这里有一个关于灰度的更多的detailed thread。在


相关问题 更多 >