我试图将CloudSight API实施到iOS Objective C项目中很有趣,但是由于某些原因,当我尝试将图像发送到cloudSight时,cloudSightQuery参数都设置为null。

我已经将CloudSight作为Cocoapod添加到我的应用程序中,并且一切正常,当我在下面执行此代码时,它从不返回服务器的任何响应,实际上我什至不确定它是否发送。

firstview.h

#import <UIKit/UIKit.h>


#import "CloudSight.h"
#import <CloudSight/CloudSightQueryDelegate.h>


@interface FirstViewController : UIViewController <CloudSightQueryDelegate>
{
    CloudSightQuery *cloudSightQuery;
}

- (void)searchWithImage;
- (NSData *)imageAsJPEGWithQuality:(float)quality;

@end


firstview.m

#import "FirstViewController.h"
#import <CoreLocation/CoreLocation.h>
#import "CloudSightConnection.h"
#import "UIImage+it_Image.h"
#import <CloudSight/CloudSightQuery.h>


@interface FirstViewController ()

@end

@implementation FirstViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    cloudSightQuery.queryDelegate = self;
    [self searchWithImage];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)searchWithImage {
    UIImage * myImage = [UIImage imageNamed: @"car.jpg"];
    NSData *imageData = [self imageAsJPEGWithQuality:0.7 image:myImage];




    // Start CloudSight
    cloudSightQuery = [[CloudSightQuery alloc] initWithImage:imageData
                                                  atLocation:CGPointZero
                                                withDelegate:self
                                                 atPlacemark:nil
                                                withDeviceId:@""];

    [cloudSightQuery start];
}

#pragma mark CloudSightQueryDelegate

- (void)cloudSightQueryDidFinishIdentifying:(CloudSightQuery *)query {
    if (query.skipReason != nil) {
        NSLog(@"Skipped: %@", query.skipReason);
    } else {
        NSLog(@"Identified: %@", query.title);
    }
}

- (void)cloudSightQueryDidFail:(CloudSightQuery *)query withError:(NSError *)error {
    NSLog(@"Error: %@", error);
}

#pragma mark image
- (NSData *)imageAsJPEGWithQuality:(float)quality image:(UIImage *)image
{
    return UIImageJPEGRepresentation(image, quality);
}



@end


这是库:https://libraries.io/github/cloudsight/cloudsight-objc

最佳答案

我们只是更新了库以使其更加清晰。您可以运行pod update CloudSight以获得新版本。

此类问题的最典型原因是从未调用过代表。通常,这意味着委托对象在被回调之前就已释放,但是在这种情况下,分配时它看起来像是nil。

这行在这里:

cloudSightQuery.queryDelegate = self;
[self searchWithImage];


应更改为:

[self searchWithImage];


然后在方法实现中更改初始化并开始:

// Start CloudSight
cloudSightQuery = [[CloudSightQuery alloc] initWithImage:imageData
                                              atLocation:CGPointZero
                                            withDelegate:self
                                             atPlacemark:nil
                                            withDeviceId:@""];
cloudSightQuery.queryDelegate = self;
[cloudSightQuery start];


让我们知道是否有帮助!

07-26 09:37