biOps jpeg图像阅读[R]

时间:2015-09-01 20:56:31

标签: r

我想在R中读取Jpeg图像。将其转换为灰度,最后得到图像的负片。

我曾经用biOps读取图像,然后用EBImage进行另外两次转换。

目前我正在使用Windows 8,由于我认为版本问题,我不能再做这个简单的操作了。

我想安装正确的软件包或者找一些其他方法来完成这三个简单的步骤。

谢谢你!

1 个答案:

答案 0 :(得分:1)

Why are you trying to read the file in with biOps? (which is no longer available on CRAN)

#Read the file in with `EBImage`
library("EBImage")
your_image = readImage(system.file("directory", "your_image.jpg", package="EBImage"))
#perform your other transformations
相关问题