标记的fer函数说错误:找不到函数" fer"

时间:2015-09-23 17:00:27

标签: r image-processing indico

我从

安装了indicoio包
devtools::install_github("IndicoDataSolutions/IndicoIo-R")

但是还安装了以前的版本。我也尝试使用

卸载它
remove.packages("indicoio")

重新安装。

然后当我尝试使用

fer(imageLocation,api_key)

imageLocation = path.expand("~/R/funwithR/data/photoforanalysis.png")

我收到错误说

Error: could not find function "fer"

另外

library(indicoio)

给出

Warning messages:
1: In if (content == "") { :
the condition has length > 1 and only the first element will be used
2: In if (content == "") { :
the condition has length > 1 and only the first element will be used

然而

image_features(imageLocation,apikey)

作品

1 个答案:

答案 0 :(得分:1)

似乎不是

fer(imageLocation,api_key)

给出错误。另一个功能

face_emotion(imageLocation,api_key)

正在运作。

“FER只是face_emotion的别名函数。因此,不会很快就会弃用。”,正如Chris从印度所说的那样。

所以,另一个似乎很好。