/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #import #import @interface PaddleMobileCPUResult: NSObject @property (assign, nonatomic, readonly) float *output; @property (assign, nonatomic, readonly) int outputSize; -(void)releaseOutput; @end @interface PaddleMobileCPU : NSObject /* 创建对象 */ - (instancetype)init; /* load 模型, 开辟内存 */ - (BOOL)load:(NSString *)modelPath andWeightsPath:(NSString *)weighsPath; /* 加载散开形式的模型, 需传入模型的目录 */ - (BOOL)load:(NSString *)modelAndWeightPath; /* * 从内存中加载模型 * */ - (BOOL)LoadCombinedMemory:(size_t)modelLen andModelBuf:(const uint8_t *)modelBuf andModelParamsLen:(size_t)combinedParamsLen andCombinedParamsBuf:(const uint8_t *)combinedParamsBuf; /* * 对图像进行预处理, 需要外部开辟 output 内存, 外部释放 output 内存 * */ -(void)preprocess:(CGImageRef)image output:(float *)output means:(NSArray *)means scale:(float)scale dim:(NSArray *)dim; /* * 预测预处理后的数据, 返回结果使用结束需要调用其 realseOutput 函数进行释放 * */ - (PaddleMobileCPUResult *)predictInput:(float *)input dim:(NSArray *)dim; /* 进行预测, means 和 scale 为训练模型时的预处理参数, 如训练时没有做这些预处理则直接使用 predict */ - (NSArray *)predict:(CGImageRef)image dim:(NSArray *)dim means:(NSArray *)means scale:(float)scale; /* 进行预测, 默认 means 为 0, scale 为 1.0 */ - (NSArray *)predict:(CGImageRef)image dim:(NSArray *)dim; /* 清理内存 */ - (void)clear; @end