使用OpenCV面部检测在iOS中裁剪图像

时间:2013-02-07 16:52:03

标签: iphone ios objective-c image-processing opencv

我使用以下代码在我的面部检测代码中从图像裁剪面部。但我没有得到正确的脸部图像,我得到的图像的一部分保存而不是脸部。我的代码有什么问题?

_faceCascade.detectMultiScale(mat, faces, 1.1, 2, kHaarOptions, cv::Size(40, 40));

在displayfaces函数中使用此代码进行裁剪:

CGRect cropRect = CGRectMake(faces[i].x, faces[i].y, faces[i].width, faces[i].width);
CGImageRef cropped_img = CGImageCreateWithImageInRect(self.storeImage.CGImage, cropRect);
UIImage *img = [UIImage imageWithCGImage:cropped_img];
UIImageWriteToSavedPhotosAlbum( img, self,  nil,nil);

我得到faces[i]的正确坐标。但问题只在于裁剪和设定投资回报率。有人可以帮助我解决它吗?

我也尝试使用以下代码,再次获得相同的图像。 (即,我没有得到实际的脸部图像)

cv :: Mat image_roi;
cv::Rect roi(faces[i].x, faces[i].y, faces[i].width, faces[i].height);
cv::Mat(testMat, roi).copyTo(image_roi);
UIImage *img = [CaptureViewController imageWithCVMat:image_roi ];
UIImageWriteToSavedPhotosAlbum( img, self,  nil,nil);

注意:我正在使用opencv facedetect检测实时视频流中的人脸。我可以在脸部周围看到绿色矩形。但我不能用脸部参数裁剪脸部。我也尝试过设置faceroi以检测眼睛,即使失败也是如此。为了缩小问题范围,问题可能在于为图像设置ROI?

于2013年2月11日更新:

我的Done Cropping如下所示,但ROI设置不正确且图像裁剪不好:

我在上面的帖子中找到了这个问题(感谢@Jameo指出我因为旋转问题而导致它。)我已经旋转了图像,如下所示。

UIImage *rotateImage = [[UIImage alloc] initWithCGImage: image.CGImage
                               scale: 1.0
                         orientation: UIImageOrientationRight];

使用以下代码裁剪图像:

// get sub image
+ (UIImage*) getSubImageFrom: (UIImage*) img WithRect: (CGRect) rect
{
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    // translated rectangle for drawing sub image
    CGRect drawRect = CGRectMake(-rect.origin.x, -rect.origin.y, img.size.width, img.size.height);
    // clip to the bounds of the image context
    // not strictly necessary as it will get clipped anyway?
    CGContextClipToRect(context, CGRectMake(0, 0, rect.size.width, rect.size.height));
    // draw image
    [img drawInRect:drawRect];
    // grab image
    UIImage* subImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return subImage;
}

图像被裁剪但不是实际的坐标。

我的观察: 1)使用Affinetransform返回的FaceRect裁剪图像。这是错误坐标的原因还是因为我的代码中存在错误? 2)在设置仿射变换之前,我无法为图像设置ROI,原因是什么,这是设置ROI的过程吗?

faceRect = CGRectApplyAffineTransform(faceRect, t);

但仍然没有正确完成裁剪差异如下所示:

完整图片:

Full Image

裁剪图片

enter image description here

2 个答案:

答案 0 :(得分:1)

这是怎么回事?

- (UIImage *) getSubImageFrom:(UIImage *)imageToCrop WithRect:(CGRect)rect {

    CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);    
    UIImage *cropped = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);

    return cropped;    
}

答案 1 :(得分:0)

尝试这样来获取面部坐标:

CGRect newBounds = CGRectMake(faceFeature.bounds.origin.x, 
                              _picture.size.height - faceFeature.bounds.origin.y - largestFace.bounds.size.height, 
                              faceFeature.bounds.size.width, 
                              faceFeature.bounds.size.height);

然后使用以下方式裁剪图像:

CGImageRef subImage = CGImageCreateWithImageInRect(image.CGImage, newBounds);
UIImage *croppedImage = [UIImage imageWithCGImage:subImage];
UIImageView *newView = [[UIImageView alloc] initWithImage:croppedImage];