SLR 12

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 17

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

18 Terms

1

Bitmap image

  • Comprised of pixels - smallest identifiable part of an image

  • Each pixel is assigned a binary value - represents its colour

New cards
2

Resolution

total pixels in an image = width x height

New cards
3

PPI

Pixels Per Inch - refers to the density of the pixels - 72 is standard

New cards
4

DPI

Dots Per Inch - related to printing

New cards
5

Colour Depth

2^n where n is the number of bits

New cards
6

Storing colours

  • RGB system uses 24 bits - 16,777,216 colours - what the eye can see

  • 32 bits are used to store transparency - alpha channel

New cards
7

File size

Resolution x Colour Depth

New cards
8

Metadata

Data about data

  • The reason image file size may be different to the value calculated - could also be due to compression

New cards
9

Metadata examples

  • colour depth

  • date and time of creation

  • width and height in pixels

New cards
10

Vector images

  • The reason image file size may be different to the value calculated - could also be due to compression


Vector Images

  • Stores geometric object not pixels

  • Stores the properties of these shapes - drawing list:

    • size of angles

    • fill colour

    • start point and end point (co-ordinates)

    • line colour

    • line thickness

  • Able to recreate exact copies of the object

  • Mathematically calculated - can be resized without pixelation

  • Each shape needs different properties - circle would need centre point and radius

  • Bitmaps are better for photographs - more natural as the photo may not be made up of lines/ shapes

  • Stored as an SGV file

  • Can layer images without losing what is stored underneath - bitmap will replace the original pixels

New cards
11

Character Sets

  • Each letter has a binary value associated - you press the key and the electrical signals that represent this letter are transmitted to display the binary value

  • A character set is all the characters a computer can represent

New cards
12

ASCII

  • American Standardised Code for Information Interchange - 7 bits - extended ASCII uses 8 bits

  • 8 bit ASCII is not used much - 127 allows us to store most letters, numbers and symbols

New cards
13

ASCII Values

  • American Standardised Code for Information Interchange - 7 bits - extended ASCII uses 8 bits

  • 8 bit ASCII is not used much - 127 allows us to store most letters, numbers and symbols

ASCII:

  • 0-31 = Controls

    • Null = 0

    • CR (enter) = 13

    • ESC = 27

  • 48-57 = Numbers - cannot be used for arithmetic - binary is used instead

  • 65-90 = Capital letters - 65 = A

  • 91-123 = Lowercase letters - 91 = a

  • All other values are used for symbols

New cards
14

Unicode

  • Uses UTF-8 - continuation of columns and headers to represent values

  • Compatible with almost all devices

  • Backwards compatible

New cards
15

Parity Bits

  • Odd/ even way to check data

  • A byte of data will be sent with a parity bit - the next byte will have an odd or even number of 1s

  • In an odd parity, the spare bit will be used to make the number of 1s odd

  • In an even parity, the spare bit will make the number of 1s even

  • A 0 is used to keep it the same, a 1 is used to change it

New cards
16

Majority Voting

  • No parity bit

  • Data is sent 3 times and the computer uses the majority rule to check the data

  • More data needs to be sent and data may be sent in error 3 times

New cards
17

Check Sum

  • Mathematical algorithm ensures the checksums match

    • 70 + 204 + 12 = 286

  • There could still be an error

    • 74 + 200 + 12 = 286

New cards
18

Check Digit

  • Examples include barcodes and ISBNs

  • Often used with a large number

  • If it matches the final digit, there are no errors

New cards
robot