PaddleMobileCPU.h 3.8 KB
Newer Older
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
L
liuruilong 已提交
2

3 4 5
 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
L
liuruilong 已提交
6

7
 http://www.apache.org/licenses/LICENSE-2.0
L
liuruilong 已提交
8

9 10 11 12 13 14
 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. */

15 16
#pragma once

17 18 19
#import <CoreImage/CoreImage.h>
#import <Foundation/Foundation.h>

L
liuruilong 已提交
20 21 22 23 24 25 26 27 28 29
@interface PaddleMobileCPUResult: NSObject

@property (assign, nonatomic, readonly) float *output;

@property (assign, nonatomic, readonly) int outputSize;

-(void)releaseOutput;

@end

L
liuruilong 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
@interface  PaddleMobileCPUConfig: NSObject

/**
 @b 默认为 1, 多线程时, 建议设置为 2
 */
@property (assign, nonatomic) int threadNum;

/**
 @b 是否开启运行时 infershape
 */
@property  (assign, nonatomic) BOOL loddable;

/**
 @b 是否开启模型 op 融合优化
 */
@property  (assign, nonatomic) BOOL optimize;

47 48 49 50 51
/**
 @b 是否预测时初始化内存,用于处理可变输入
 */
@property  (assign, nonatomic) BOOL loadWhenPredict;

L
liuruilong 已提交
52 53
@end

L
liuruilong 已提交
54
@interface PaddleMobileCPU : NSObject
55

L
liuruilong 已提交
56 57
/**
 @b 创建对象
L
liuruilong 已提交
58

L
liuruilong 已提交
59 60 61 62
 @param config 配置
 @return paddlemobile CPU 对象
 */
- (instancetype)initWithConfig:(PaddleMobileCPUConfig *)config;
L
liuruilong 已提交
63

L
liuruilong 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/**
 @b 加载模型

 @param modelPath 模型路径
 @param weighsPath 权重路径
 @return 是否加载成功
 */
- (BOOL)loadModel:(NSString *)modelPath andWeightsPath:(NSString *)weighsPath;

/**
 @b 加载散开形式的模型, 需传入模型的目录

 @param modelAndWeightPath 模型和权重的路径
 @return 是否加载成功
 */
L
liuruilong 已提交
79 80
- (BOOL)load:(NSString *)modelAndWeightPath;

L
liuruilong 已提交
81 82 83 84 85 86 87 88 89
/**
 @b 从内存中加载模型

 @param modelLen 模型大小(字节数)
 @param modelBuf 模型在内存中的位置
 @param combinedParamsLen 权重大小(字节数)
 @param combinedParamsBuf 权重在内存中的位置
 @return 是否加载成功
 */
L
liuruilong 已提交
90 91 92 93 94 95
- (BOOL)LoadCombinedMemory:(size_t)modelLen
               andModelBuf:(const uint8_t *)modelBuf
         andModelParamsLen:(size_t)combinedParamsLen
      andCombinedParamsBuf:(const uint8_t *)combinedParamsBuf;

/*
L
liuruilong 已提交
96
 *
L
liuruilong 已提交
97
 * */
L
liuruilong 已提交
98 99 100 101 102 103 104 105 106 107 108


/**
 @b 对图像进行预处理, 需要外部开辟 output 内存, 外部释放 output 内存, 每一个像素经过这样的预处理 (x + means) * scale, 其中 x 为像素值

 @param image 输入的图像
 @param output 预处理后的输出
 @param means 预处理中 means
 @param scale 预处理中的 scale
 @param dim 预处理后的维度
 */
L
liuruilong 已提交
109 110 111 112 113 114
-(void)preprocess:(CGImageRef)image
           output:(float *)output
            means:(NSArray<NSNumber *> *)means
        scale:(float)scale
        dim:(NSArray<NSNumber *> *)dim;

L
liuruilong 已提交
115 116 117 118 119 120 121
/**
 进行预测

 @param input 输入
 @param dim 输入维度
 @return 输出结果
 */
L
liuruilong 已提交
122 123 124
- (PaddleMobileCPUResult *)predictInput:(float *)input
                                    dim:(NSArray<NSNumber *> *)dim;

L
liuruilong 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
/**
 @b 进行预测, means 和 scale 为训练模型时的预处理参数, 如训练时没有做这些预处理则直接使用 predict, 每一个像素经过这样的预处理 (x + means) * scale, 其中 x 为像素值

 @param image 输入图像
 @param dim 输入维度
 @param means 预处理中 means
 @param scale 预处理中 scale
 @return 预测结果
 */
- (PaddleMobileCPUResult *)predict:(CGImageRef)image dim:(NSArray<NSNumber *> *)dim means:(NSArray<NSNumber *> *)means scale:(float)scale;

/**
 进行预测, 预处理 means 值为 0, scale 值为 1

 @param image 输入图像
 @param dim 输入维度
 @return 预测结果
 */
- (PaddleMobileCPUResult *)predict:(CGImageRef)image dim:(NSArray<NSNumber *> *)dim;

/**
 @b 清理内存
 */
148 149 150
- (void)clear;

@end