Open In App

What is Raster Scan Display Mechanism?

Improve
Improve
Like Article
Like
Save
Share
Report

Computer Graphics is the manipulation of the image in a pictorial manner. The rendering can be done in this manipulation and creation of the new image and hence computer graphics is used. Even a raster scan is an important aspect when it comes to computer graphics. Raster Scan Displays are the most common type of graphics monitor which employs CRT. It is based on television technology. What-is-Raster-Scan-Display-Mechanism

Working of Raster Scan Display

  • In the Raster scan system, the electron beam is used as a fixed path on the screen. The electron bean starts from the top left corner of the screen and follows the horizontal path until it reaches the end of the line. This defines a scan line. During the scan, the intensity of the beam is modulated according to the pattern of the desired image along the line.
  • After reaching the right corner of the screen, the beam is switched off and it is moved back to the left edge/point of the new row as the new starting point. This defines horizontal retrace.
  • Picture definition is positioned in a memory area which is technically known as Frame Buffer. This memory area holds up the set of intense values for all the screen points. Stored intensity values are then retrieved from the frame buffer and used to display images on the screen.
  • Now the scanning is continued until it reaches the bottom right corner of the screen. After it reaches the bottom right corner of the screen it defines one scan is completed. Each screen point is known as a pixel.
  • After one scan is completed the electron beam is re-positioned at the top left corner of the screen for the next scan. The repositioning process of the electron beam bottom right corner to top left corner is referred to as vertical retrace.
  •  The way we humans conceptualize graphics is purely visual. A computer, however, must numerically represent images. For a computer to understand what the image is supposed to look like, we must format information in a way that a computer can understand.

The diagram 3D images are broken into triangles. These triangles are described using vertices. These vertices are written to a vertex buffer and fed to a vertex shader. Then, the computer determines whether the triangle appears on the screen. It culls any objects that don’t appear. These objects are then refined by the fragment shader, where effects can be applied. Last, the data describing each pixel is sent to a frame buffer, where the image is drawn before it is presented to the screen.

 as follows:

Raster-Scan-Mechanism

Advantages

  • Cost for raster scan devices is cheaper/low.
  • Doesn’t require an intelligent electron beam.
  • Used for animation purposes.

Disadvantages

  • Low resolution.
  • Requires more memory.
  • Electron beam coordinated to the whole screen not exclusively to those parts of the screen where the picture is to be drawn.

Last Updated : 21 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads