-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathDirs.py
41 lines (29 loc) · 1.52 KB
/
Dirs.py
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
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Jul 1 10:29:20 2019
@author: rain
"""
import os
Disk_F = '/media/rain/Win10_F/'
# Disk_F = 'F:\\'
strBaseDir = os.path.join(Disk_F,'KITTI_odometry')
str3DFeatNetDir = os.path.join(Disk_F,'KITTI_odometry', 'output_3DFeatNet');
strUsipBaseDir = os.path.join(Disk_F, 'USIP')
strGroundTruthPosesDir = os.path.join(strBaseDir, 'poses')
strEstimatedPosesDir = os.path.join(strBaseDir, 'poses_')
strDejumpyedPosesDir = os.path.join(strBaseDir, 'poses__')
strRefinedPosesDir = os.path.join(strBaseDir, 'poses___')
#strRefinedPosesDir = os.path.join(strBaseDir, 'poses___WithoutBackwardUpdate')
strClosedPosesDir = os.path.join(strBaseDir, 'poses____')
strDataBaseDir = os.path.join(strBaseDir, 'velodyne', 'sequences')
strCalibDataDir = os.path.join(strBaseDir, 'calib')
strRespondNetModelPath = './TrainedModels/SphericalRingPCRespondLayer.h5'
strVoxelPatchEncoderPath = './TrainedModels/EncoderModel4VoxelPatch.h5'
strUsipPcDir = os.path.join(strUsipBaseDir, '/kitti', 'data_odometry_velodyne', 'numpy')
#strUsipKeyPtsDir = strUsipBaseDir + 'KeyPts/kitti/tsf/'
strUsipKeyPtsDir = os.path.join(strUsipBaseDir, 'KeyPts', 'kitti', 'tsf_1024')
strUsipDescDir = os.path.join(strUsipBaseDir, 'Descriptors')
strIssKeyPtsDir = os.path.join(strUsipBaseDir, 'KeyPts', 'kitti', 'iss_1024')
strHarrisKeyPtsDir = os.path.join(strUsipBaseDir, 'KeyPts', 'kitti', 'harris_1024')
strSiftKeyPtsDir = os.path.join(strUsipBaseDir, 'KeyPts', 'kitti', 'sift_1024')