python API _ 1 (EasyDict)
阿新 • • 發佈:2018-04-24
ans 1.0 con AR XP clas nump import height
作用:參數調用
文件一:
from easydict import EasyDict as edict
import numpy as np
config = edict()
config.IMG_HEIGHT = 375
config.IMG_WIDTH = 1242
config.EXP_THRESH = 1.0
config.RBG_MEANS = np.array([[[ 123.68, 116.779, 103.939]]])
def set_anchors(H, W):
B = 9
shape = np.array(
[[ 36., 37.], [ 366., 174.], [ 115., 59.],
[ 162., 87.], [ 38., 90.], [ 258., 173.],
[ 224., 108.], [ 78., 170.], [ 72., 43.]])
... ...
文件二:
from configs.kitti_config import config
num_output = config.NUM_ANCHORS * (config.NUM_CLASSES + 1 + 4)
python API _ 1 (EasyDict)