Computer Vision Basics Coursera Quiz Answers

Coursera was launched in 2012 by Daphne Koller and Andrew Ng with the goal of giving life-changing learning experiences to students all around the world. In the modern day, Coursera is a worldwide online learning platform that provides anybody, anywhere with access to online courses and degrees from top institutions and corporations.

Join Now

Computer Vision Basics Coursera Quiz Answers

Week 01 – Quiz 01: What is Computer Vision? Quiz Answers

Q1. Computer vision includes which of the following?

  • All are correct
  • Automatic extraction of features from images
  • Analysis of images
  • Understanding useful information
  • None are correct

Quiz 02: Related Fields of Computer Vision Quiz Answers

Q1. The image acquisition devices of computer vision systems capture visual information as digital signals?

  • True
  • False;

Quiz 03: MATLAB Basics Quiz Answers

Q3. Correct Syntax to read image in MATLAB in the current folder

  • var_image = imread(‘my_image.jpg’)
  • var_image = imread(‘my_image’)

Q4. Select the correct option to crop the top-left 50×50 section from the image read below.

var_image = imread(‘my_image.jpg’)

  • cropped_section = var_image(0:50,0:50)
  • cropped_section = var_image(1:50,1:50)
  • cropped_section = var_image[0:50,0:50]
  • cropped_section = var_image[1:50,1:50]

Q5. What is initial data type of the image you read through imread function of MATLAB?

  • int8
  • double;
  • uint8

Q6. I1 = imread(‘my_image.jpg’)

I2 = im2double(I1)

  • Scales the image intensity values from 0 to 1
  • Converts the image from uint8 to double format
  • The array dimensions remain same

Q7. Select the options which assign the height and width of an image correctly in MATLAB.

var_image = imread(‘my_image.jpg’)

  • [height,width] = size(var_image ); (Ans)
  • [width,height] = size(var_image );
  • image_dimension = size(var_image );

width = image_dimension(1)

height = image_dimension(2)

  • image_dimension = size(var_image ); (Ans)

height = image_dimension(1)

width = image_dimension(2);

Week 02 – Quiz 01: Light Sources Quiz Answers

Q1. Which of the following are area sources?

  • Sun at infinity
  • Bulb
  • Diffuser boxes
  • All of these
  • White walls

Q2. Does distance of the light source affect the color of a pixel?

  • No
  • Yes

Quiz 02: Pinhole Camera Model Quiz Answers

Q10. Does distance of the light source affect the color of a pixel?

  • No
  • Yes

Quiz 03: Digital Camera Quiz Answers

Q1. Match column A with correct options in a column in B.

Column A Column B 1) Shutter speeda) Amount of light per unit area reaching the image sensor2) Exposureb) an effect that causes different signals to become indistinguishable when sampled3) Aperturec) The length of time when sensor is exposed to light when taking a photograph4) Aliasingd) Hole or an opening through which light travels
  • 1-c, 2-a, 3-d, 4-b

Week 03 – Quiz 01: Three-Level Paradigm

Q1.

Column A Column B 1) Computational Theorya) Steps for Computation2) Representation and algorithmb) Physical realization of algorithms, programs and hardware3) Implementationc) What the device is supposed to do
  • 1-c, 2-a, 3-b
  • 1-a, 2-b, 3-c
  • 1-b, 2-c, 3-a
  • 1-a, 2-c, 3-b

Quiz 02: Low-Level Vision

Q1. Low-level vision consists of:

1) feature detection and matching

2) early segmentation

  • 1
  • 1 and 2
  • 2
  • None;

Week 04 – Quiz 01: Algorithms Quiz Answers

Q1. Match the Algorithms in column A with correct techniques in column B

Column A Column B 1) Dynamic Programminga) Binary Image Restoration2) Graph algorithmsb) Stereo matching3) Dynamic Programmingc) Seam Carving4) Graph algorithmsd) Image segmentation
  • 1-b, 2-d, 3-c, 4-a

.

Review:

Based on our knowledge, we urge you to enroll in this course so you can pick up new skills from specialists. It will be worthwhile, we trust.

 

Leave a Comment