返回卡包市场

Graphics and compression

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 15内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (15 张)

#1
正面 (问题)

Define pixel

背面 (解答)

Smallest addressable area of an image

#2
正面 (问题)

How do you calculate resolution of VDU screen and an image

背面 (解答)

VDU screen: number of pixels per row*number of pixels per column An image: Number of pixels per inch/centimetre

#3
正面 (问题)

Define colour depth

背面 (解答)

Number of bits used to represent a colour of a single pixel

#4
正面 (问题)

How do you calculate image size

背面 (解答)

Image size(in bits) = bits per colour * number of pixels

#5
正面 (问题)

Define metadata

背面 (解答)

Information about data stored in same file as image data Including: date, colour depth, location, etc

#6
正面 (问题)

How do vector graphics work

背面 (解答)

They are co-ordinates of objects making up pictures stored as mathematical data. Points described relative from origin. The objects are comprised of paths, can be scaled and group together.

#7
正面 (问题)

What path features does each vector have

背面 (解答)

Start and end point coordinates Length Thickness Colour

#8
正面 (问题)

Two types of compression

背面 (解答)

Lossless compression and lossy compression

#9
正面 (问题)

Define lossless compression and lossy compression

背面 (解答)

Lossless compression: File can be uncompressed, and o.g quality of image can be restored Lossy compression: Some o.g image quality lost forever. So when decompress you cannot get it back

#10
正面 (问题)

How does lossy JPEG work

背面 (解答)

Storing at reduced resolution Reduced number of shades to one as not noticeable to human eye

#11
正面 (问题)

How does lossless dictionary-based work

背面 (解答)

Contains token numbers that represent letters Example: Storing “Station nation creation” tokens: “tion” = 1, “sta”=2, “na”=3, “crea”=4 so can be stored as ‘21 31 41’ which uses less data

#12
正面 (问题)

How does lossless run length encoding work

背面 (解答)

RLE (image based) takes account that images have long runs of pixel with same colour. So if 3 or more consecutive of same colour, run of cells is encoded into 2 bytes

#13
正面 (问题)

Advantages and disadvantages of RLE

背面 (解答)

Advantages: Algorithm easy to implement and CPU does not require much horsepower Computer generated colour images give fair compression ratios Disadvantages: RLE only effective when file has lots of repetitive data

#14
正面 (问题)

How does RLE work for monochrome data

背面 (解答)

Always start with number of whites, then alternate between black and white

#15
正面 (问题)

Why is vector graphics better than bitmap representation

背面 (解答)

Instead of storing colour information about every pixel they store instructions about the image using less space.