Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ class ParameterSampler {
size_t max_depth_ = 13000;
double angle_stdev_ = 20.0;
double focal_stdev_ = 40.0;
std::vector<double> theta_means_ = {-180.0, 0.0, 180.0};
std::vector<double> phi_means_ = {-180.0, 0.0, 180.0};
std::vector<double> gamma_means_ = {-180.0, -90.0, 0.0, 90.0, 180.0};
std::vector<double> theta_means_ = {0.0};
std::vector<double> phi_means_ = {0.0};
std::vector<double> gamma_means_ = {0.0};
double theta_;
double phi_;
double gamma_;
Expand Down