現在、Affectiva SDK を使用して録画したビデオを分析するプロジェクトを行っています。彼らがくれたファイルをダウンロードし、SDK が機能するようにコードを書き始めましたが、コードでコールバック関数を呼び出すと、Visual Studio は入力された引数を受け入れないようです。コールバック関数のインターフェースを行う必要があることに注意してください。ただし、これはすべてアセンブリコードで行われたと思っていたので、これについてはよくわかりません。これまでの私のコードは次のようになります。
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using Affdex;
namespace ConsoleApplication2
{
class Program
{
public interface FaceListener { }
public interface ImageListener { }
public interface ProcessStatusListener { }
static void Main(string[] args)
{
VideoDetector detector = new VideoDetector(15);
String licensePath = "C:/Users/hamud/Desktop/sdk_ahmedmudi1992@gmail.com.license";
detector.setLicensePath(licensePath);
String classifierPath = "C:/Programmer/Affectiva/Affdex SDK/data";
detector.setClassifierPath(classifierPath);
detector.setFaceListener(this);
detector.setImageListener(this);
detector.setProcessStatusListener(this);
detector.setDetectSmile(true);
detector.setDetectSurprise(false);
detector.setDetectBrowRaise(false);
detector.setDetectAnger(false);
detector.setDetectDisgust(false);
detector.setDetectAllExpressions(false);
detector.start();
detector.stop();
}
}
}
私の知る限り、間違っていなければインターフェイスのコードを書かなければなりません...それともそうですか? 助けてください。