forked from CMU-Perceptual-Computing-Lab/openpose_train
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathloadConfigParameters.m
More file actions
33 lines (27 loc) · 1.04 KB
/
Copy pathloadConfigParameters.m
File metadata and controls
33 lines (27 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
%% User-configurable parameters
% All the parameters on this file start by 's'
% Path parameters
% Caffe
sCaffePath = '/home/gines/devel/caffe_train/matlab/';
sNumberGpus = 4;
sNumberGpusStart = 0;
% COCO
sCocoModelsPath = '/home/gines/Dropbox/Perceptual_Computing_Lab/openpose/openpose/models/pose/coco/';
sCocoProtoTxt = '../old_or_not_used/prototxt/coco/pose_deploy.prototxt';
sCocoModel = [sCocoModelsPath, 'pose_iter_440000.caffemodel'];
% MPI
sMpiModelsPath = '../dataset/testing_model/mpi/';
sMpiProtoTxt = [sMpiModelsPath, 'pose_deploy.prototxt'];
sMpiModel = [sMpiModelsPath, 'pose_iter_146000.caffemodel'];
% Dataset
sDatasetBaseFolder = '../dataset/';
sDatasetFolder = [sDatasetBaseFolder, 'COCO/'];
sCocoApiFolder = [sDatasetFolder, 'cocoapi/'];
sCocoMatlabApiFolder = [sCocoApiFolder, 'MatlabAPI/'];
sImagesFolder = [sCocoApiFolder, 'images/'];
sAnnotationsFolder = [sCocoApiFolder, 'annotations/'];
sMatFolder = [sDatasetFolder, 'mat/'];
sCocoMatPath = [sMatFolder, 'coco_val'];
% Algorithm parameters
sNumberKeyPoints = 18;
sImageScale = 368;