Git Product home page Git Product logo

grindingtrajectoryplanning's Introduction

GrindingTrajectoryPlanning

All the code should be run under matlab console.

addpath ./utils/ ./pose/ ./traj/ ./collision_detection/
mex ./utils/generatePointsCloud.cpp % -largeArrayDims % This make mxSize size_t
mex ./utils/myTraverser.cpp

1. Get the target from *.stl

Run the following scripts, this will return v, f, n. readSTLModel function have a parameter func, which is a function handle used for preprocessing, the default is preprocessStlVFN, you can do some other preprocess by change the function.

[v, f, n] = readStlModel("/Users/junr/Documents/Works/graduation-project/code/planning/123.stl");

2. Get the robot arm in SerielLink model.

The following code will return robot as robot arm model.

robot, q0, speed_limit, qlimit = getRobotModel();

3. Planning: get the path.

3.1 Divide the whole stl model into individual faces.

Divide into small faces will need less memory space, but also make the path not global-optimal. So, the path will be generated according to different faces.

clusters = divideIntoFaces(v, f ,n); % clusters have shape [1, #clusters]

3.2 For each face cluster generate path.

[pointsPath, pointsPathIdx] = generatePathFromClusters(clusters, v, f, n, 0.5, 0);

The function generatePath will run following code:

[pointsCloud, pointsCloudFaceIdx] = generatePointsCloud(clusters{cluIdx}, v, f, n, gap);
[orderedPointsCloud, orderedPointsCloudIdx] = myTraverser(pointsCloud, pointsCloudFaceIdx, method);

which use graph traverse algorithm, see myTraverser.cpp for detail.

4. Planning: get the pose along the path.

4.1 Modify NormalVec.

Normal vectors generate before are path normal vectors. As for points, we need add some smoothness between different points in different faces. And you can add more modification to make it fit your project, your robot by changing the function.

normalVecsM = modifyNormalVec(normalVecs);

4.2 Get pose based on normal vectors.

The connectPaths function transfer points and normal vectors into homogeneous transformation matrix. TODO: according to their clustersIdx, add transition path.

Ts = connectPaths(pointsPath, normalVecsM, clustersIdx);

4.3 Get joint space qs.

The Ts2q function transfer homogeneous transformation matrix into joint space coordinates, qs, which is angle of six axis of the robot.

qs = Ts2q(myRobot, q0, 2, Ts);

4.4 Save result.

Save result, name it.

array2txt(qs, '2018-5-16_t1');

grindingtrajectoryplanning's People

Contributors

junrq avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.