Skip to content

Instantly share code, notes, and snippets.

@blacksmithop
Last active November 11, 2020 05:27
Show Gist options
  • Save blacksmithop/d2f501ad00ed8cab844a3037ccb9f38c to your computer and use it in GitHub Desktop.
Save blacksmithop/d2f501ad00ed8cab844a3037ccb9f38c to your computer and use it in GitHub Desktop.
Answer to C

Rasterisation

It is the task of taking an image described in a vector graphics format (shapes) and converting it into a raster image (a series of pixels, dots or lines, which, when displayed together, create the image which was represented via shapes). The rasterised image may then be displayed on a computer display, video display or printer, or stored in a bitmap file format. Rasterisation may refer to the technique of drawing 3D models, or the conversion of 2D rendering primitives such as polygons, line segments into a rasterized format.

Scan conversion

It is a process of representing graphics objects a collection of pixels. The graphics objects are continuous. The pixels used are discrete. Each pixel can have either on or off state.

(another explanation) Scan conversion or scan converting rate is a video processing technique for changing the vertical / horizontal scan frequency of video signal for different purposes and applications. The device which performs this conversion is called a scan converter.

Objects which can be scan converted

Point Line Sector Arc Ellipse Rectangle Polygon

Scan Converting a Point

scan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment