var option = [NSObject : AnyObject]?.self
option = [CIDetectorSmile = true, CIDetectorEyeBlink = true, CIDetectorImageOrientation : 6]
Error: Expected ',' separator
var features = faceDetector.featuresInImage(sourceImage, options: option)
Error: Cannot invoke 'featuresInImage' with an argument list of type ('CIImage, options: [NSObject : AnyObject]?Type?)
How can I resolve that compile error?