- 我从一张
imageView.image
(照片)开始。 - 我提交(POST)
imageView.image
到远程服务(微软人脸检测)进行处理。 - 远程服务
CGRect
为图像上检测到的每个人脸返回 JSON 格式。 - 我将 JSON 输入我的 UIView 以绘制矩形。我用
{0, 0, imageView.image.size.width, imageView.image.size.height}
. <--我的想法,一个框架的大小相当于imageView.image
- 将我的 UIView 添加为
self.imageView
OR的子视图self.view
(都尝试过)
最终结果:
绘制了矩形,但它们在imageView.image
. 也就是说,为每个人脸生成的 CGRect 应该是相对于图像的坐标空间,由远程服务返回,但是一旦我添加了我的自定义视图,它们就会消失。
我相信我可能会遇到某种缩放问题,因为如果我将 CGRects / 2 中的每个值相除(作为测试),我可以获得一个近似值但仍然关闭。微软文档声明检测到的人脸返回矩形,表示图像中人脸的位置(以像素为单位) 。然而,在绘制我的路径时,它们不是被视为点吗?
另外,我不应该使用与 ' 框架等效的框架来启动我的视图,imageView.image
以便视图与提交的图像匹配相同的坐标空间吗?
这是一个屏幕截图示例,如果我尝试通过将每个 CGRect 除以 2 来按比例缩小它们的样子。
我是 iOS 新手,从书本中脱离出来,将其作为一种自我练习。我可以根据需要提供更多代码。提前感谢您的洞察力!
编辑 1
我为每个矩形添加一个子视图,因为我通过以下方法遍历包含每个面的矩形的面部属性数组,该方法在(void)viewDidAppear:(BOOL)animated
- (void)buildFaceRects {
// build an array of CGRect dicts off of JSON returned from analized image
NSMutableArray *array = [self analizeImage:self.imageView.image];
// enumerate over array using block - each obj in array represents one face
[array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
// build dictionary of rects and attributes for the face
NSDictionary *json = [NSDictionary dictionaryWithObjectsAndKeys:obj[@"attributes"], @"attributes", obj[@"faceId"], @"faceId", obj[@"faceRectangle"], @"faceRectangle", nil];
// initiate face model object with dictionary
ZGCFace *face = [[ZGCFace alloc] initWithJSON:json];
NSLog(@"%@", face.faceId);
NSLog(@"%d", face.age);
NSLog(@"%@", face.gender);
NSLog(@"%f", face.faceRect.origin.x);
NSLog(@"%f", face.faceRect.origin.y);
NSLog(@"%f", face.faceRect.size.height);
NSLog(@"%f", face.faceRect.size.width);
// define frame for subview containing face rectangle
CGRect imageRect = CGRectMake(0, 0, self.imageView.image.size.width, self.imageView.image.size.height);
// initiate rectange subview with face info
ZGCFaceRectView *faceRect = [[ZGCFaceRectView alloc] initWithFace:face frame:imageRect];
// add view as subview of imageview (?)
[self.imageView addSubview:faceRect];
}];
}
编辑2:
/* Image info */
UIImageView *iv = self.imageView;
UIImage *img = iv.image;
CGImageRef CGimg = img.CGImage;
// Bitmap dimensions [pixels]
NSUInteger imgWidth = CGImageGetWidth(CGimg);
NSUInteger imgHeight = CGImageGetHeight(CGimg);
NSLog(@"Image dimensions: %lux%lu", imgWidth, imgHeight);
// Image size pixels (size * scale)
CGSize imgSizeInPixels = CGSizeMake(img.size.width * img.scale, img.size.height * img.scale);
NSLog(@"image size in Pixels: %fx%f", imgSizeInPixels.width, imgSizeInPixels.height);
// Image size points
CGSize imgSizeInPoints = img.size;
NSLog(@"image size in Points: %fx%f", imgSizeInPoints.width, imgSizeInPoints.height);
// Calculate Image frame (within imgview) with a contentMode of UIViewContentModeScaleAspectFit
CGFloat imgScale = fminf(CGRectGetWidth(iv.bounds)/imgSizeInPoints.width, CGRectGetHeight(iv.bounds)/imgSizeInPoints.height);
CGSize scaledImgSize = CGSizeMake(imgSizeInPoints.width * imgScale, imgSizeInPoints.height * imgScale);
CGRect imgFrame = CGRectMake(roundf(0.5f*(CGRectGetWidth(iv.bounds)-scaledImgSize.width)), roundf(0.5f*(CGRectGetHeight(iv.bounds)-scaledImgSize.height)), roundf(scaledImgSize.width), roundf(scaledImgSize.height));
// initiate rectange subview with face info
ZGCFaceRectView *faceRect = [[ZGCFaceRectView alloc] initWithFace:face frame:imgFrame];
// add view as subview of image view
[iv addSubview:faceRect];
}];