Unit 5 Computer Vision
Unit 5 Computer Vision
WORKSHEET
A. Tick (✔) the correct option.
Exercise Solved Questions
SECTION A (Objective Type Questions)
1. In which of the following images, the shades range starts with 0 and ends with
255?
a. Grayscale images c. Black and white images
b. RGB images d. High resolution images
2. Which among the following images around us are made up of 3 primary colors of
Red, Green and Blue?
a. Moving c. Monochrome
b. Static d. Colored
3. What does OpenCV stands for?
a. Open Computer Vision c. Open Compilation Version
b. Open-Source Computer Vision d. Open Computer Version
4. Which of the following is commonly used in applications such as image retrieval
and automated vehicle parking systems?
a. Instance Segmentation c. Localization
b. Object detection d. Classification
5. Which of the following is the most popular architecture used for image
classification?
a. Neural Networks c. Data Sciences
b. Computer Vision d. Convolutional Neural Networks (CNNs)
6. Which of the following is not an application of CV?
a. Face filters c. Chatbots
b. Damage analysis d. Self driving cars
7. Which of the following is an example of image classification in CV?
a. Price prediction c. Trend setting
b. Photo albums in smartphones d. Facelock in smartphone
8. What are neural networks?
a A series of Hidden Layers c. Fully connected
b. Made up of artificial neurons d. All of the above
Key
Answers
Exercise (Section A)
A. 1. a
2. d
3. b
4. b
5. d
6. c
7. b
8. d
B. 1. Human vision
2. localisation
3. object detection
4. multiple objects
5. segmentation
6. bits
7. resolution
8. picture element
9. screen resolution
10. byte image
11. grayscale
12. intensity
13. computer vision
14. OpenCV
15. grayscale
C. 1. True 2. False 3. True 4. True
5. False 6. True 7. True 8. True 9. False
D. 1. c 2. a. 3. d 4. b 5. e
Key
UNSOLVED QUESTIONS -
Exercise (Section A)
A. 1. c
2. a
3. d
4. b
B. 1. Computer vision
2. inferences
3. classification
4. instance segmentation
5. pixel
6. image
7. computer vision
8. cv2.COLOR_BGR2RGB
9. Region of interest
10. resize()
11. neural networks
12. nodes
5.Can we save an altered image using open cv in our drive? Give a code
to do so.
Yes, we can save an altered image Using OpenCV in our drive. OpenCV
imwrite() function is used to save an image to a Specified file.
The code to save the image according to the specified format in current
working directory.
Syntax: cv2. imwrite(filename, image) Parameters: filename: A string
representing the file name.