Skip to content

Commit a75e2f8

Browse files
authored
Add files via upload
1 parent b4d11c8 commit a75e2f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

include/IBACalib2.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class IBAPlaneParams{
2222
IBAPlaneParams(){};
2323
public:
2424
double max_pixel_dist = 1.5;
25-
int num_best_convis = 3;
25+
int num_best_covis = 3;
2626
int min_covis_weight = 100;
2727
int num_min_corr = 30;
2828
int kdtree2d_max_leaf_size = 10;
@@ -44,7 +44,7 @@ class IBAGPRParams{
4444
IBAGPRParams(){};
4545
public:
4646
double max_pixel_dist = 1.5;
47-
int num_best_convis = 3;
47+
int num_best_covis = 3;
4848
int min_covis_weight = 150;
4949
int num_min_corr = 30;
5050
int kdtree2d_max_leaf_size = 10;
@@ -72,7 +72,7 @@ class IBAGPR3dParams{
7272
double corr_3d_2d_threshold = 40.;
7373
double corr_3d_3d_threshold = 5.;
7474
double he_threshold = 0.05;
75-
int num_best_convis = 3;
75+
int num_best_covis = 3;
7676
int min_covis_weight = 150;
7777
int num_min_corr = 30;
7878
int kdtree2d_max_leaf_size = 10;
@@ -112,7 +112,7 @@ class IBALocalParams{
112112
double corr_3d_3d_threshold = 5.;
113113
double he_threshold = 0.05;
114114
int num_min_corr = 30;
115-
int num_best_convis = 3;
115+
int num_best_covis = 3;
116116
int min_covis_weight = 150;
117117
int kdtree2d_max_leaf_size = 10;
118118
int kdtree3d_max_leaf_size = 30;
@@ -951,7 +951,7 @@ struct UIBA_PlaneFactor{
951951
cost_func->SetNumResiduals(2*_u1_list.size());
952952
cost_func->AddParameterBlock(7);
953953
for(int i = 0; i < _u1_list.size() + 1; ++ i)
954-
cost_func->AddParameterBlock(6); // Add Pose (RefPose + Convisible Pose)
954+
cost_func->AddParameterBlock(6); // Add Pose (RefPose + Covisible Pose)
955955
return cost_func;
956956
}
957957
private:
@@ -1110,7 +1110,7 @@ struct UIBA_GPRFactor{
11101110
cost_func->SetNumResiduals(2*_u1_list.size());
11111111
cost_func->AddParameterBlock(7);
11121112
for(int i = 0; i < _u1_list.size() + 1; ++ i)
1113-
cost_func->AddParameterBlock(6); // Add Pose (RefPose + Convisible Pose)
1113+
cost_func->AddParameterBlock(6); // Add Pose (RefPose + Covisible Pose)
11141114
return cost_func;
11151115
}
11161116

0 commit comments

Comments
 (0)