Skip to content
Snippets Groups Projects
Commit e468b3fd authored by Mirko Wächter's avatar Mirko Wächter
Browse files

fixed uniform distribution parameter

parent 62a1c6f6
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ std::vector<Eigen::Matrix4f> GraspEvaluationPoseUncertainty::generatePoses(const
Eigen::Matrix4f m;
std::default_random_engine generator;
std::normal_distribution<double> normalDistribution(0.0,0.5);
std::uniform_real_distribution<double> uniformDistribution(0.0,0.5);
std::uniform_real_distribution<double> uniformDistribution(0.0,1);
for (int j=0;j<numPoses; j++)
{
for (int i = 0; i < 6; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment