iOS Affdex SDK をブリッジ ヘッダー (Swift) で使用しようとしています。このプロセスの進め方を教えてください。また、SDK (Swift を使用して) に基づいて絵文字を表示するにはどうすればよいでしょうか。
質問する
285 次
1 に答える
4
以下は、Objective-C から Swift への命名規則に役立つリンクです。
Swift で SDK を使用する方法を示す単純なビュー コントローラー クラスを添付しました。うまくいけば、これはあなたを助けるでしょう.
class ViewController: UIViewController, AFDXDetectorDelegate {
var detector : AFDXDetector? = nil
override func viewDidLoad() {
super.viewDidLoad()
// create the detector
detector = AFDXDetector(delegate:self, usingCamera:AFDX_CAMERA_FRONT, maximumFaces:1)
detector?.setDetectEmojis(true)
detector!.start()
}
func detectorDidStartDetectingFace(face : AFDXFace) {
// handle new face
}
func detectorDidStopDetectingFace(face : AFDXFace) {
// handle loss of existing face
}
func detector(detector : AFDXDetector, hasResults : NSMutableDictionary?, forImage : UIImage, atTime : NSTimeInterval) {
// handle processed and unprocessed images here
if hasResults != nil {
// handle processed image in this block of code
// enumrate the dictionary of faces
for (_, face) in hasResults! {
// for each face, get the rage score and print it
let emoji : AFDXEmoji = face.emojis
let rageScore = emoji.rage
print(rageScore)
}
} else {
// handle unprocessed image in this block of code
}
}
于 2016-04-15T14:07:03.547 に答える