|
static const nvinfer1::Dims3 | IMAGE_SHAPE {3, 832, 1344} |
|
static const int | POOL_SIZE = 7 |
|
static const int | MASK_POOL_SIZE = 14 |
|
static const float | MASK_THRESHOLD = 0.5 |
|
static const float | DETECTION_REG_WEIGHTS [] = {10, 10, 5, 5} |
|
static const int | DETECTION_MAX_INSTANCES = 100 |
|
static const float | DETECTION_MIN_CONFIDENCE = 0 |
|
static const float | DETECTION_NMS_THRESHOLD = 0.5 |
|
static const int | FPN_CLASSIF_FC_LAYERS_SIZE = 1024 |
|
static const int | TOP_DOWN_PYRAMID_SIZE = 256 |
|
static const int | NUM_CLASSES = 1 + 90 |
|
static const int | MIN_LEVEL = 2 |
|
static const int | MAX_LEVEL = 6 |
|
static const float | RPN_ANCHOR_SCALE = 8 |
|
static const std::vector< std::pair< float, float > > | ANCHOR_RATIOS = {std::make_pair(1.0f, 1.0f), std::make_pair(1.4f, 0.7f), std::make_pair(0.7f, 1.4f)} |
|
static const int | RPN_ANCHOR_STRIDE = 1 |
|
static const int | MAX_PRE_NMS_RESULTS = 1000 |
|
static const float | RPN_NMS_THRESHOLD = 0.7 |
|
static const int | POST_NMS_ROIS_INFERENCE = 1000 |
|
static const std::vector< std::string > | CLASS_NAMES |
|
static const std::string | MODEL_NAME = "mrcnn_nchw.uff" |
|
static const std::string | MODEL_INPUT = "Input" |
|
static const Dims3 | MODEL_INPUT_SHAPE = IMAGE_SHAPE |
|
static const std::vector< std::string > | MODEL_OUTPUTS = {"generate_detections", "mask_head/mask_fcn_logits/BiasAdd"} |
|
static const Dims2 | MODEL_DETECTION_SHAPE {DETECTION_MAX_INSTANCES, 6} |
|
static const Dims4 | MODEL_MASK_SHAPE {DETECTION_MAX_INSTANCES, NUM_CLASSES, 28, 28} |
|