Quiz Yourself on Reading Images and Videos
Quiz yourself on what you've learned in this chapter.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
We want to read an image, image.jpg
, into a Mat
class object, img
. What is the right way to accomplish that?
A.
Mat img = imread("image.jpg");
B.
img = read("image.jpg");
C.
Mat img = imread."image.jpg"
D.
Mat img = read("image.jpg");
1 / 3
...