Computer Science: An Overview (12th Edition)
12th Edition
ISBN: 9780133760064
Author: Glenn Brookshear, Dennis Brylow
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
Chapter 10, Problem 29CRP
Program Plan Intro
Hidden surface problem:
- In the pictures with non-transparent objects, the objects cannot be viewed that are behind from objects nearer to eye.
- These hidden surfaces are to be removed for getting realistic screen image.
- The removal of such surfaces is known as hidden-surface problem.
- The methods used for removing hidden surface problem includes:
- Object space method:
- It is executed in physical coordinate system.
- Image space method:
- It is executed in screen coordinate system.
- Object space method:
- To display a 3D object on 2D screen, the parts visible from chosen viewing point are to be identified.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Please write python codes to smooth an image by using median filter and Bilateral filter separately.
You should give your codes, the input image and its outputs.
Please use the Python languageUse filters for any image using kernel (filter) matrices. It should be done using loops (you can only use the image processing libraries to open or read the image). Apply these filters to an image you prefer with Python. Provide the outputs.
The issue: You are programming a graphics filter that filters each individual image. Each pixel is described as a triplet of real values, R, G, and B, each ranging from 0 to 255.For the filtering methods to function properly, real numbers must be used. However, after looking into the programme, you find that they simply want two digits of precision. Any extra digits are just unnecessary.
Chapter 10 Solutions
Computer Science: An Overview (12th Edition)
Ch. 10.1 - Prob. 1QECh. 10.1 - Prob. 2QECh. 10.1 - Prob. 3QECh. 10.2 - Prob. 1QECh. 10.2 - Prob. 2QECh. 10.2 - Prob. 3QECh. 10.3 - Prob. 1QECh. 10.3 - Prob. 2QECh. 10.3 - Prob. 3QECh. 10.3 - Prob. 4QE
Ch. 10.3 - Prob. 5QECh. 10.4 - Prob. 1QECh. 10.4 - Prob. 2QECh. 10.4 - Prob. 3QECh. 10.4 - Prob. 4QECh. 10.4 - Prob. 5QECh. 10.5 - Prob. 1QECh. 10.5 - Prob. 2QECh. 10.5 - Prob. 3QECh. 10.5 - Prob. 4QECh. 10.6 - Prob. 1QECh. 10.6 - What is a storyboard?Ch. 10.6 - Prob. 3QECh. 10.6 - Prob. 4QECh. 10 - Prob. 1CRPCh. 10 - Prob. 2CRPCh. 10 - Prob. 3CRPCh. 10 - Prob. 4CRPCh. 10 - Prob. 5CRPCh. 10 - Prob. 6CRPCh. 10 - Prob. 7CRPCh. 10 - Prob. 8CRPCh. 10 - Prob. 9CRPCh. 10 - Prob. 10CRPCh. 10 - Prob. 11CRPCh. 10 - Prob. 12CRPCh. 10 - Prob. 13CRPCh. 10 - Prob. 14CRPCh. 10 - Prob. 15CRPCh. 10 - Prob. 16CRPCh. 10 - Prob. 17CRPCh. 10 - Prob. 18CRPCh. 10 - Prob. 19CRPCh. 10 - Prob. 20CRPCh. 10 - Prob. 21CRPCh. 10 - Prob. 22CRPCh. 10 - Prob. 23CRPCh. 10 - Prob. 24CRPCh. 10 - Prob. 25CRPCh. 10 - Prob. 26CRPCh. 10 - Prob. 27CRPCh. 10 - Prob. 28CRPCh. 10 - Prob. 29CRPCh. 10 - Prob. 30CRPCh. 10 - Prob. 31CRPCh. 10 - Prob. 32CRPCh. 10 - Prob. 33CRPCh. 10 - In what way does the hardware in a computer...Ch. 10 - Prob. 35CRPCh. 10 - Prob. 36CRPCh. 10 - Prob. 37CRPCh. 10 - Prob. 38CRPCh. 10 - Prob. 39CRPCh. 10 - Prob. 40CRPCh. 10 - Prob. 41CRPCh. 10 - Prob. 42CRPCh. 10 - Prob. 43CRPCh. 10 - Prob. 44CRPCh. 10 - Prob. 1SICh. 10 - The following questions are intended as a guide to...Ch. 10 - Prob. 3SICh. 10 - Prob. 4SI
Knowledge Booster
Similar questions
- 1. You need to manually implement the K-Means algorithm. You also need to implement Image Color Quantization as a function using your KMeans algorithm. Note that the empty cluster center should be checked and avoided. 2. Apply your function on the given image (test.jpg) by setting the numbers of clusters to 2, 8, 16, and 32, respectively. Illustrate the original image and images with color quantization. 3. Randomly pick the colors of pixels as centroids (instead the centroids calculated by the KMeans algorithm) and conduct color quantization. Show the original image and images with color quantization with K=2, 8, 16, and 32, respectively. Compare the image generated using K-Means algorithm and randomly picked centroids. 4. Pick an image you like and conduct the Image Color Quantization using K-Means. (Pick any values of K you like.) Use the test image attached. You should manually implement the K-Means algorithm. You can only use packages: numpy (for calculation and implementation of…arrow_forwardWrite your own camera calibration and triangulation programme for stereo cameras. You may use libraries such as OpenCV. Using photos of an object of known dimensions, apply some keypoint matching algorithm to find image correspondences to it and try to reconstruct the object or scene.arrow_forwardWrite MATLAB code that will read image 'cameraman.tif". Then, do spatial filtering ('imfilter') to the image by using different boundary options. Use box mask of size 5X5.arrow_forward
- Motion History Image (MHI) technique uses a frame differencing inside to generate M(t). In its original form SFD is used. Instead of SFD, we can use a) ABS, b) TFD. Write pseudo-code for each case separately.arrow_forwardThe issue: You are programming a graphics filter that filters each individual picture. The definition of a pixel is a triplet of real integers (R, G, and B), each of which ranges from 0 to 255. For the filtering methods to function properly, real numbers must be used. However, after looking at the software, you find that they only require two digits of accuracy. Any extra numbers are just unnecessary.arrow_forwardOpenGL Programming (Show screenshot to prove it works)arrow_forward
- In computer graphics, what exactly is the function of the reflection vector? Provide at least two instances to back up your explanation.arrow_forward2 Gaussian blurring is used to define an image scale to work in, for interpolation, for computing interest points, and in many more applications. SciPy comes with a module for filtering called scipy.ndimage.filters that can be used to compute these convolutions using a fast 1D separation. All you need to do is: from PIL import Image from numpy import * numpy from scipy.ndimage import filters im = array(Image.open('empire.jpg').convert('L')) = im2 filters.gaussian_filter(im,5) 001-08 T التعليل Here the last parameter of gaussian_filter() is the standard deviation. sagino O 80 (a) q Langla (b) Bia oltes (c) gooliage (d) toteu Figure 1.9: An example of Gaussian blurring using the scipy.ndimage.filters module. (a) original image in grayscale, (b) Gaussian filter with o=2, (c) with σ = 5, (d) with σ = 10. Figure 1.9 shows examples of an image blurred with increasing segma. Larger values gives less details. To blur color images, simply apply Gaussian blurring to each color channel. Exercises…arrow_forwardThe Issue: You're writing a graphics filter that runs each picture through a filter. Each pixel is specified as a triplet of real numbers (R,G,B) ranging from 0 to 255. To do their task, the filtering algorithms must operate on actual numbers. However, when you examine the software, you will notice that they only require two digits of accuracy. Any extra digits are unnecessary.arrow_forward
- An image is going to be warped by the transformation f using backward mapping. (i) What is the process of backward mapping as opposed to forward mapping? Which one is generally perferred and why? Are there any circumstances in which the preferred option is impossible? (ii) The warping is performed, however, the result looks 'blocky' - smooth lines have become jagged. Why has this occured? Name a solution that the programmer could implement to improve the quality.arrow_forwardIn computer graphics, what function does the reflection vector serve? Provide evidence from at least two separate situations to back up your point.arrow_forwardFor the following 2 images, both have 8x8 size with black and white pixels. Although they look quite different, their histograms are identical. Suppose that both images are blurred with a 3x3 smoothing masks with zeros edge extension, would the new histograms still be the same? Explain your answer. 2.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education