English 中文(简体)
面临UIImage的探测问题?
原标题:face detection issue on UIImage?

我正试图对申请进行面对面的检测,即尝试过一次申请,即从一个链接中得出这一提法,即它们改变了,然后改变了窗口。 通过违约进行的检测工作逐渐减少,因此快速固定了这些图像,然后把窗户推回,以再次寻找一切。 现在,图像将位于屏幕底部,但需要通过抹掉图像和风 wind来发现面孔。 是可能的? 如果是的话,请张贴一些法典。

在这里,我已经把这部法律放在 image上。

UIImageView* imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"steves.jpg"]];
[imageView setTransform:CGAffineTransformMakeScale(1, -1)];
[self.window setTransform:CGAffineTransformMakeScale(1, -1)];
[imageView setFrame:CGRectMake(0, 0, imageView.image.size.width, imageView.image.size.height)];
[self.window addSubview:imageView];
[imageView release];
问题回答

显然有人混淆。 CIDetector提供的面对面检测not要求缩小图像。 更可能是因为某些其他原因,你试图从这部法典中抹去。 或者完全出于任何理由,这种情况令人惊讶。

您可以找到一个简单的理论实例,利用国际合作署网站





相关问题
Asynchronous request to the server from background thread

I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

iPhone numberpad with decimal point

I am writing an iPhone application which requires the user to enter several values that may contain a decimal point (currency values, percentages etc.). The number of decimal places in the values ...

热门标签