我从
安装了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)
作品
答案 0 :(得分:1)
似乎不是
fer(imageLocation,api_key)
给出错误。另一个功能
face_emotion(imageLocation,api_key)
正在运作。
“FER只是face_emotion的别名函数。因此,不会很快就会弃用。”,正如Chris从印度所说的那样。
所以,另一个似乎很好。