在分析视频中的情绪时,有没有办法设置产生汇总结果的频率?
我目前正在使用 Microsoft Cognitive Services Emotion API ( https://www.microsoft.com/cognitive-services/en-us/emotion-api ),但我找不到任何关于此的文档。
在进行一些研究时,我发现可以使用 Azure 媒体分析设置间隔(https://azure.microsoft.com/en-us/documentation/articles/media-services-face-and-emotion-detection/)。特别是通过设置一个预设,例如:
{
"version": "1.0",
"options": {
"aggregateEmotionWindowMs": "987",
"mode": "aggregateEmotion",
"aggregateEmotionIntervalMs": "342"
}
}
我正在寻找与 Microsoft Cognitive Services Emotion API 类似的东西。
谢谢。