Affectiva从文件macOS检测情绪

时间:2017-12-20 14:16:55

标签: objective-c image macos affdex-sdk emotion

我试图制作一个macOS应用程序,使用驱动器中的文件检测图片中的情绪。我有一个问题,以正确的方式添加路径" usingFile"。目前Xcode显示错误:"使用未声明的标识符'路径' "

- (void)viewDidLoad {
    [super viewDidLoad];

// detector
self.detector = [[AFDXDetector alloc] initWithDelegate: self
                                             usingFile: (NSString *)path
                                          maximumFaces: (NSUInteger)maximumFaces;

[self.detector setDetectAllEmotions:YES];
self.detector.maxProcessRate = 5;
[self.detector start];
}

Affdex-SDK的文档:http://affectiva.github.io/developerportal/pages/platforms/v4_0_0/ios/classdocs/interface_a_f_d_x_detector.html

0 个答案:

没有答案