ビデオの感情を分析するときに集計結果を生成する頻度を設定する方法はありますか?
現在、Microsoft Cognitive Services Emotion API ( https://www.microsoft.com/cognitive-services/en-us/emotion-api ) を使用していますが、これに関するドキュメントが見つかりません。
いくつかの調査を行っているときに、Azure Media Analytics を使用して間隔を設定できることがわかりました ( 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 に似たものを探しています。
ありがとう。