Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过以下方式转换了一堆“正常”的 JPG 照片
convert infile -colorspace Gray outfile
为单色。然而,结果是所有图像都非常暗。这里有一个示例转换:原始照片和转换后的单色图像。
有没有更好的方法将使用 ImageMagick 的照片般逼真的图像转换为灰度?
该文档指出,在更改颜色空间时,颜色会在转换之前从其原始伽马转换为线性。您需要将它们转换回适当的伽玛。
convert infile -colorspace Gray -gamma 2.2 outfile