As you advised, I've tried CIDetectorMinFeatureSize. It works as expected. Dict of parameters seems correct way to set the parameters.
opt = {'CIDetectorAccuracy': 'CIDetectorAccuracyHigh',
'CIDetectorMinFeatureSize': 0.2}
d = CIDetector.detectorOfType_context_options_('CIDetectorTypeFace', None, opt)
rects = d.featuresInImage_(ci_img)
The face can be detected when the param is small (0.1), not be detected when the param is large (>0.3). (Somehow larger parameters kill pythonista to home screen.)
I cannot still find the way to read the set option from CIDetector. If you know which API to use, could you show me?
Thank you so much.