img
All Q&A
1

What are the application of Computer Graphics ?

21 November, 2024
Computer-generated model of the physical, financial and economic system is often used as educational aids. Model of physical systems, physiological system, population trends or equipment can help trainees to understand the operation of the system.
2

What is Computer Graphics ?

21 November, 2024
It is difficult to display an image of any size on the computer screen. This method is simplified by using Computer graphics. Graphics on the computer are produced by using various algorithms and techniques.
3

Bresenham's Line Algorithm.

21 November, 2024
This algorithm is used for scan converting a line. It was developed by Bresenham. It is an efficient method because it involves only integer addition, subtractions, and multiplication operations. These operations can be performed very rapidly so lines can be generated quickly.
4

DDA Line generation Algorithm .

21 November, 2024
In any 2-Dimensional plane if we connect two points (x0, y0) and (x1, y1), we get a line segment. But in the case of computer graphics we can not directly join any two coordinate points, for that we should calculate intermediate point’s coordinate and put a pixel for each intermediate point, of the desired color with help of functions like putpixel(x, y, K) in C, where (x,y) is our co-ordinate and K denotes some color.
5

Z-Buffer or Depth-Buffer method

21 November, 2024
When viewing a picture containing non transparent objects and surfaces, it is not possible to see those objects from view which are behind from the objects closer to eye. To get the realistic screen image, removal of these hidden surfaces is must.
6

Different between Graphics Card and Video Card

21 November, 2024
A graphics card is a printed circuit board that houses a processor and a RAM. It is a piece of computer hardware that produces the image you see on a monitor. The visual part of the network helps in controlling and improving the pictures, videos, animations and other features.
7

Compression of GIF images

21 November, 2024
GIF is not a data compression method. The original version of GIF is known as GIF87a. It is graphical image format that uses variant of LZW to compress the graphical data and allows to send image between different computers.