魔术贴图像矢量上的mapply

时间:2019-04-21 12:04:03

标签: r imagemagick apply mapply

我尝试使用@User.IsInRole("DOMAIN\*DEPT/TEAM/A&BC Developers") @User.IsInRole("")magick::image_rotate()旋转图像以获得不同的旋转角度

mapply

这会导致错误

image_rotate

2 个答案:

答案 0 :(得分:2)

我认为您需要将鸡蛋放入篮子(即"list"对象)

library(magick)
egg <- sapply(easterEggs, image_read)
eggRotation <- sapply(egg, function(x) runif(length(x), -90, 90))

,您的mapply会正常工作。

mapply(image_rotate, egg, eggRotation)

答案 1 :(得分:1)

尝试使用for循环旋转图像

library(magick)

egg_new <- egg
for (i in seq_along(egg)) {
  egg_new[i] <- image_rotate(egg[i], eggRotation[i])
}
egg_new