Giter VIP home page Giter VIP logo

camera_lidar_fusion's Introduction

Hi there 👋 I am Tianyu Li

💼   Ph.D. Candidate working on Robotics at GRASP Lab , University of Pennsylvania

📫   Email me at [email protected]

🌐   Know more about me at imtianyuli.com


camera_lidar_fusion's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

hengzhangmiivii

camera_lidar_fusion's Issues

这个函数有问题吧?

vector findLidarDataRangeOnLiveCamera(vector points)
{

vector<int> distancePoints = points;  //input point data vector;
int numberOfPoint = 1080;
for(int i = 0; i < numberOfPoint; i++){
    //cout << i<< "th " << distancePoints[i] << endl; //print data for each of 1080 point;
}


//calculate useful data range from Lidar for the camera since they have different angle.

double pointsPerDegree = numberOfPoint/lAngle;

double removeDegree = (lAngle - cAngle)/2; //needs to remove most right and most left
double removePoints = removeDegree * pointsPerDegree;

vector<int> CLFusionPoint;

//decide which Lidar data point will be on the camera, filter out the data.
for (int i = int(removePoints) + 1; i < **(numberOfPoint - int(removePoints))**; i++)

//这里的循环条件为零了,?
{
CLFusionPoint.push_back(distancePoints[i]);
//cout << i<< "th " << distancePoints[i] << endl; //print data for each in range point.

}

return CLFusionPoint;

}

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.