Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Here you will find all the necessary resources for the computer vision input.

...

Watch the presentation and write down questions and thoughts that come to your mind! We can discuss them later in the Zoom conference.

📼IAD-CV-Introduction Video

...

...

...

https://zhdk.zoom.us/j/4710337215

Topcis

  • What do you expect of today?

  • How was it to watch the presentation?

  • Specific ideas for your group project?

  • How is the input structured?

  • Use Slack / Zoom for help

Processing & Media (10:30 - 12:00)

Do your own first steps with processing and computer vision by creating a paint tool with your own interaction method.

Excerpt
hiddentrue

📼IAD-CV-ProcessingMedia Video

Task 1

Create a new processing sketch which loads this image and displays it. How can we find the position of the moon?

Expand
titleIteration over Pixels Example
Code Block
languagejava
int w = img.width;
int h = img.height;

for(int y = 0; y < h; y++) {
  for(int x = 0; x < w; x++) {
    
    // do something
    img.set(x, y, color(0)):
  }
}

Task 2

Install the Video Library 2.0 and display the webcam image!

Task 3 a)

Combine brightest point tracking with the webcam capture to track the brightest point in your webcam video.

Task 3 b)

Create an own drawing software that is controlled by the light of your smartphone flashlight.

  • Think about additional features you could implement!

Zoom Conference (13:00)

Discuss the morning & share what everyone has created.

...