BSc:IntroductionToComputerVision.previous version

From IU
Jump to navigation Jump to search

Introduction to Computer Vision

  • Course name: Computer Vision
  • Course number: XXX

Course Characteristics

Key concepts of the class

  • Computer vision techniques
  • Classical and deep learning models

What is the purpose of this course?

This course provides an intensive treatment of a cross-section of the key elements of computer vision, with an emphasis on implementing them in modern programming environments, and using them to solve real-world problems. The course will begin with the fundamentals of image processing and image filtering, but will quickly build to cover more advanced topics, including image segmentation, object detection and recognition, face detection, content-based image retrieval, artificial neural networks, convolutional neural networks, generative adversarial networks and much more. A key focus of the course is on providing students with not only theory but also hands-on practice of building their computer vision applications.

Course Objectives Based on Bloom’s Taxonomy

What should a student remember at the end of the course?

By the end of the course, the students should be able to process the video

  • Significant exposure to real-world implementations
  • To develop research interest in the theory and application of computer vision

What should a student be able to understand at the end of the course?

By the end of the course, the students should be able to choose the correct computer vision model.

  • Suitability of different computer vision models in different scenarios
  • Ability to choose the right model for the given task

What should a student be able to apply at the end of the course?

By the end of the course, the students should be able to deploy and developed models.

  • Hands on experience to implement different models to know inside behavior
  • Sufficient exposure to train and deploy model for the given task
  • Fine tune the deployed model in the real-world settings

Course evaluation

Course grade breakdown
Proposed points
Labs/seminar classes 20 20
Interim performance assessment 30 50
Exams 50 30

Labs/seminar classes points are divided into Quizzes and lab participation. Quizzes is 10% and two worst will be dropped. Lab homework is 10%. Interim performance assessment contains project with 20% weightage of the whole course. Exams will be conducted in theory and practical mode.

Late Submission Policy will be strictly applied in this course. Late submission automatically lowered one grade. If a personal emergency should arise that affects your ability, you must contact the course instructor BEFORE the deadline to get a “Special Late Submission Approval" from the course instructor. No “Special Late Submission Approval” will be granted after the deadline. There are no makeup quizzes.

Grades range

The grade ranges are defined in Table. 1.

Course grading range
Proposed range
A. Excellent 90-100 90-100
B. Good 75-89 75-89
C. Satisfactory 60-74 60-74
D. Poor 0-59 0-59


Resources and reference material

  • Handouts supplied by the instructor
  • Materials from the internet and research papers shared by instructor

Course Sections

The main sections of the course and approximate hour distribution between them is as follows:

Course Sections
Section Section Title Teaching Hours
1 Image Acquisition and Basic Image Processing 8
2 Image Filtering and Binary Vision 8
3 Feature Extractors and Descriptors 16
4 Deep Learning models for computer vision 16

Section 1

Section title:

Image Acquisition and Basic Image Processing

Topics covered in this section:

  • Computer vision in action
  • The Human Vision System
  • Optical Illusions
  • Sampling and Quantization
  • Image Representation
  • Colour Spaces

What forms of evaluation were used to test students’ performance in this section?

|a|c| & Yes/No
Development of individual parts of software product code & 1
Homework and group projects & 1
Midterm evaluation & 1
Testing (written or computer based) & 1
Reports & 0
Essays & 0
Oral polls & 0
Discussions & 1


Typical questions for ongoing performance evaluation within this section

  1. What are the color spaces and where it’s used?
  2. What are the primary and secondary colors?
  3. How image is formed into computers?
  4. How you will convert the RGB to grayscale images

Typical questions for seminar classes (labs) within this section

  1. Loading and plotting the images in python environment
  2. Convertion of different color spaces
  3. How you find the skin in the images based on the color space models
  4. how to find red eye dot in face using color space models

Test questions for final assessment in this section

  1. How you can distinguish different color spaces?
  2. Explain and provide the reason for the blind spot creation in human eye.
  3. In what scenarios computer vision is better than human vision?
  4. Write down different robotic application areas where computer vision is applied successfully.

Section 2

Section title:

Image Filtering and Binary Vision

Topics covered in this section:

  • Image noise
  • Convolutions and kernels
  • Smoothing and blurring
  • Thresholding and histograms
  • Morphological operations
  • Gradients and Edge detection

What forms of evaluation were used to test students’ performance in this section?

|a|c| & Yes/No
Development of individual parts of software product code & 1
Homework and group projects & 1
Midterm evaluation & 1
Testing (written or computer based) & 1
Reports & 0
Essays & 0
Oral polls & 0
Discussions & 1


Typical questions for ongoing performance evaluation within this section

  1. What are the challenges to perform histogram task?
  2. Apply convolutional filter to calculate the response.
  3. What kind of parameters are required to apply different image filters?
  4. How you will compute the gradients of the image and its benefits?

Typical questions for seminar classes (labs) within this section

  1. Implement Otsu Method
  2. Implement Sobel, Preweitt filters
  3. Implement Canny edge detector
  4. Perform analysis over the different filtering on the given images

Test questions for final assessment in this section

  1. Calculate the kernels for the given images
  2. Explain the difference between different filters
  3. What is image noise and how it contributes to make the computer vision task difficult?
  4. Apply different combination of the filters to achieve the required output of the given image.

Section 3

Section title:

Feature Extractors and Descriptors

Topics covered in this section:

  • Histogram of Gradients (HoG)
  • Scale-invariant feature transform (SIFT)
  • Harris corner detector
  • Template matching
  • Bag of visual words
  • Face Detection and Recognition (Viola Johns)

What forms of evaluation were used to test students’ performance in this section?

|a|c| & Yes/No
Development of individual parts of software product code & 1
Homework and group projects & 1
Midterm evaluation & 1
Testing (written or computer based) & 1
Reports & 0
Essays & 0
Oral polls & 0
Discussions & 1


Typical questions for ongoing performance evaluation within this section

  1. How feature extractor works over the given image?
  2. What is the difference between the feature extraction and descriptors?
  3. Explain the examples of descriptors and feature extractors.
  4. Write down the pros and cons of SIFT, HOG and Harris.

Typical questions for seminar classes (labs) within this section

  1. Implement template matching algorithm
  2. Implement histogram of gradient using CV2 library
  3. Implement of SIFT for the given task
  4. Implement Harris corner detection
  5. Analysis of different extractors for the given task

Test questions for final assessment in this section

  1. How you distinguish different feature extractors and descriptors?
  2. What are the possible methods to detect the corners?
  3. How corners are useful to help the robotic vision task?
  4. How you will patch the different images to construct the map of the location?

Section 4

Section title:

Deep learning models for computer vision

Topics covered in this section:

  • You Only Look Once: Unified, Real-Time Object Detection (YOLO)
  • Generative Adversarial Networks (GAN)
  • Fully Convolutional Networks (FCN) for semantic segmentation
  • Multi Domain Network (MDNet) for object tracking
  • Generic Object Tracking Using Regression Networks (GOTURN) for object tracking

What forms of evaluation were used to test students’ performance in this section?

|a|c| & Yes/No
Development of individual parts of software product code & 1
Homework and group projects & 1
Midterm evaluation & 1
Testing (written or computer based) & 1
Reports & 0
Essays & 0
Oral polls & 0
Discussions & 1


Typical questions for ongoing performance evaluation within this section

  1. How classification task is different from detection task?
  2. Explain the transfer learning mechanism for object detection task.
  3. How many types of model exist for object tracking in videos.
  4. Write down the pros and cons of YOLO, FCN and MDNet.

Typical questions for seminar classes (labs) within this section

  1. Implement YOLO using transfer learning mechanism
  2. Implement GAN for MNIST dataset
  3. Implement FCN and GOTURN
  4. Analysis of different models for the given task

Test questions for final assessment in this section

  1. What are the loss functions used in YOLO?
  2. What are the learnable parameters of FCN for semantic segmentation?
  3. How semantic segmentation is different from instance segmentation?
  4. Write the application areas for object tracking in robotics.