Introduction

Fundamentals on Computing for Robotics, Graphics and Computer Vision

Darío Suárez - Adolfo Muñoz

Teachers

  • Darío Suárez - D0.14 - dario@unizar.es
  • Pablo Luesia - I3A - pluesia@unizar.es
  • Adolfo Muñoz - D2.17 - adolfo@unizar.es

Course materials

  • Moodle: materials and submissions
  • Github: auto-generated "interactive" materials

Our goal is not to evaluate you

Our goal is that you

LEARN

hello-world.cpp

Compiling

.cpp .exe Compile

Compiling


		$ ls
		hello-world.cpp
		$ g++ hello-world.cpp -o hello-world
		$ ls
		hello-world.cpp  hello-world.exe
		

Executing


		$ ./hello-world.exe
		Hello World!