如何使用Clarifai作物?

时间:2017-06-02 06:17:56

标签: ios clarifai

我可以使用objective-c中的以下示例代码识别图像并检查nsfw,sfw等预测。

  // Initialize the Clarifai app with your app's ID and Secret.
ClarifaiApp *app = [[ClarifaiApp alloc] initWithAppID:@""
                                            appSecret:@""];

// Fetch Clarifai's general model.
[app getModelByName:@"general-v1.3" completion:^(ClarifaiModel *model, NSError *error) {
    // Create a Clarifai image from a uiimage.
    ClarifaiImage *clarifaiImage = [[ClarifaiImage alloc] initWithImage:image];

    // Use Clarifai's general model to pedict tags for the given image.
    [model predictOnImages:@[clarifaiImage] completion:^(NSArray<ClarifaiOutput *> *outputs, NSError *error) {
        if (!error) {
            ClarifaiOutput *output = outputs[0];

            // Loop through predicted concepts (tags), and display them on the screen.
            NSMutableArray *tags = [NSMutableArray array];
            for (ClarifaiConcept *concept in output.concepts) {
                [tags addObject:concept.conceptName];
            }
            dispatch_async(dispatch_get_main_queue(), ^{
                self.textView.text = [NSString stringWithFormat:@"Tags:\n%@", [tags componentsJoinedByString:@", "]];
            });
        }

      dispatch_async(dispatch_get_main_queue(), ^{
        self.button.enabled = YES;
      });

    }];
}];

为此,我可以获得模型,从该模型我可以预测图像。

问题:

如何制作裁剪功能? 我没有办法达到Clarifai提供的作物功能。

任何想法。

1 个答案:

答案 0 :(得分:1)

您可以使用ClarifaiCrop类创建裁剪并使用它来初始化ClarifaiImage

ClarifaiCrop *crop = [[ClarifaiCrop alloc] initWithTop:0.1 
                                                  left:0.1
                                                bottom:0.1
                                                 right:0.1];

其中top,left,bottom和right是从图像边界到感兴趣区域的距离的百分比(在0和1之间)。在上面的示例中,图像将从每个边距裁剪10%。

ClarifaiImage *clarifaiImage = [[ClarifaiImage alloc] initWithImage:image 
                                                            andCrop:crop];