Page 1 of 1

QUESTION 7 What is displayed as a result of the following code snippet? imageArray = imread ('bears.jpg') ; imageArray (

Posted: Thu Jun 02, 2022 8:25 am
by answerhappygod
Question 7 What Is Displayed As A Result Of The Following Code Snippet Imagearray Imread Bears Jpg Imagearray 1
Question 7 What Is Displayed As A Result Of The Following Code Snippet Imagearray Imread Bears Jpg Imagearray 1 (64.67 KiB) Viewed 19 times
Question 7 What Is Displayed As A Result Of The Following Code Snippet Imagearray Imread Bears Jpg Imagearray 2
Question 7 What Is Displayed As A Result Of The Following Code Snippet Imagearray Imread Bears Jpg Imagearray 2 (54.31 KiB) Viewed 19 times
QUESTION 7 What is displayed as a result of the following code snippet? imageArray = imread ('bears.jpg') ; imageArray (:, :, 1) = 0; imageArray (:, :, 2) = 0; imshow (imageArray); O a filtered version of the bears.jpg image only showing the green layer O a filtered version of the bears.jpg image only showing the red layer O a filtered version of the bears.jpg image only showing the blue layer a grayscale filtered version of the bears.jpg image
QUESTION 8 What is displayed as a result of the following code snippet? imread ("bears.jpg') ; imageArray H imageArray (:, :, 2:3) - imageArray (:, :, 2:3) / 2; imshow (imageArray); O a filtered version of the bears.jpg image that is darker than the original and highlights the red layer more than the other color layers O a filtered version of the bears.jpg image that is brighter than the original and highlights the blue and green layer more than the other color layer Oa filtered version of the bears.jpg image that is darker than the original and highlights the green and blue layers more than the other color layer O a filtered version of the bears.jpg image that is brighter than the original and highlights the red layer more than the other color layers