Signapse
CNNProcessorSettings.h
Go to the documentation of this file.
1#include <stdio.h>
2#include "SignapseUtils.h"
3
4#define MOBNET_V2_INPUT_DIM_X 224
5#define MOBNET_V2_INPUT_DIM_Y 224
6#define MOBNET_V2_PATH "models/asl-mobilenetv2.pb"
7
12 CNNProcessorSettings(std::string network = "mobnetv2"){
13 if(network == "mobnetv2") {
17 }
18 else{
19 ; //space for more default network setups
20 }
21 }
27 ModelPath = cpy.ModelPath;
30 }
31 std::string ModelPath = "";
32 int InputDim_x = 0;
33 int InputDim_y = 0;
34};
35
36
#define MOBNET_V2_PATH
#define MOBNET_V2_INPUT_DIM_Y
#define MOBNET_V2_INPUT_DIM_X
CNNProcessorSettings(const CNNProcessorSettings &cpy)
CNNProcessorSettings(std::string network="mobnetv2")