#include <iostream>
#include <string>
class RoboticsEngineer {
public:
RoboticsEngineer() : name("Francisco"), role("Robotics Engineer") {
expertise[0] = "SLAM";
expertise[1] = "State Estimation";
expertise[2] = "Computer Vision";
}
void sayHi() const {
std::cout << "Hello! Feel free to explore. All *features*, promise.\n";
}
private:
std::string name;
std::string role;
std::string expertise[3];
};
int main() {
RoboticsEngineer me;
me.sayHi();
return 0;
}
Robotics Engineer
-
Tractonomy
- Belgium
- https://plathum.github.io/
- https://gitlab.com/PlatHum
Popular repositories Loading
-
Traxter-Software
Traxter-Software PublicThis is the repository for TIR-ANT's source-code, a ROS2-based tracked mobile robot capable of SLAM using a 2D LiDAR and a depth camera.
C++ 4
-
PlatHum.github.io
PlatHum.github.io PublicA fun interactive and responsive website of my resume.
HTML 1
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.