Presentation is loading. Please wait.

Presentation is loading. Please wait.

EEE377 Lecture Notes1 EEE436 DIGITAL COMMUNICATION Coding En. Mohd Nazri Mahmud MPhil (Cambridge, UK) BEng (Essex, UK) Room 2.14.

Similar presentations


Presentation on theme: "EEE377 Lecture Notes1 EEE436 DIGITAL COMMUNICATION Coding En. Mohd Nazri Mahmud MPhil (Cambridge, UK) BEng (Essex, UK) Room 2.14."— Presentation transcript:

1 EEE377 Lecture Notes1 EEE436 DIGITAL COMMUNICATION Coding En. Mohd Nazri Mahmud MPhil (Cambridge, UK) BEng (Essex, UK) nazriee@eng.usm.my Room 2.14

2 EEE377 Lecture Notes2 Source Coding Source encoding is the efficient representation of data generated by a source. For an efficient source encoding, knowledge of the statistics of the source is required. If some source symbols are more probable than others, we can assign short code words to frequent symbols and long code words to rare source symbols.

3 EEE377 Lecture Notes3 Source Coding Consider a discrete source whose output of k different symbols s k is converted by the source encoder into a block of 0s and 1s denoted by b k Assume that the kth symbol, s k occurs with probability p k, k=0,1…..K-1. Let the binary code word assigned to symbol s k have length l k (in bits) Therefore the average code-word length of the source encoder is given by

4 EEE377 Lecture Notes4 Source Coding Let L min denotes the minimum possible value of code-word length The Coding efficiency of the source encoder is given by

5 EEE377 Lecture Notes5 Data Compaction Data compaction is important because signals generated contain a significant amount of redundant info and waste communication resources during transmission. For efficient transmission, the redundant info should be removed prior to transmission. Data compaction is achieved by assigning short description to the most frequent outcomes of the source output and longer description to the less frequent ones. Some source-coding schemes for data compaction:- Prefix coding The Huffman Coding The Lempel-Ziv Coding

6 EEE377 Lecture Notes6 Prefix Coding A prefix code is a code in which no code word is the prefix of any other code word Example: Consider the three source codes described below Source Symbol Probability of Occurrence Code ICode IICode III s0s0 0.5000 s1s1 0.2511001 s2s2 0.12500110011 s3s3 0.125111110111

7 EEE377 Lecture Notes7 Prefix Coding Source Symbol Probability of Occurrence Code ICode IICode III s0s0 0.5000 s1s1 0.2511001 s2s2 0.12500110011 s3s3 0.125111110111 Is Code I a prefix code? It is NOT a prefix code since the bit 0, the code word for s 0, is a prefix of 00, the code word for s 2 and the bit 1, the code word for s 1, is a prefix of 11, the code word for s 3. Is Code II a prefix code? Yes Is Code III a prefix code? No A prefix code has the important property that it is always uniquely decodable

8 EEE377 Lecture Notes8 Prefix Coding - Example Source Symbol Code I Code IICode IIICode IV s0s0 00000 s1s1 1001 s2s2 11000101110 s3s3 11100010110 s4s4 11110011111 Prefix code? xx

9 EEE377 Lecture Notes9 Huffman Coding – a type of prefix code Basic idea : Assign to each symbol a sequence of bits roughly equal in length to the amount of information conveyed by the symbol. Huffman encoding algorithm: Step 1: The source symbols are listed in order of decreasing probability. The two source symbols of lowest probability are assigned a 0 and 1. Step 2: These two source symbols are regarded as being combined into a new source symbol with probability equal to the sum of the two original probabilities. The probability of the new symbol is placed in the list in accordance with its value. The procedure is repeated until we are left with a final list of symbols of only two for which a 0 and 1 are assigned. The code for each source symbol is found by working backward and tracing the sequence of 0s and 1s assigned to that symbol as well as its successors.

10 EEE377 Lecture Notes10 Huffman Coding – Example Step 1: The source symbols are listed in order of decreasing probability. The two source symbols of lowest probability are assigned a 0 and 1. Step 2: These two source symbols are regarded as being combined into a new source symbol with probability equal to the sum of the two original probabilities. The probability of the new symbol is placed in the list in accordance with its value. The procedure is repeated until we are left with a final list of symbols of only two for which a 0 and 1 are assigned. The code for each source symbol is found by working backward and tracing the sequence of 0s and 1s assigned to that symbol as well as its successors.

11 EEE377 Lecture Notes11 Huffman Coding – Average Code Length = 0.4(2) + 0.2(2) + 0.2(2) + 0.1(3) + 0.1(3) = 2.2

12 EEE377 Lecture Notes12 Huffman Coding – Exercise SymbolS0S0 S1S1 S2S2 Probability0.70.15 Compute the Huffman code. What is the average code-word length?

13 EEE377 Lecture Notes13 Huffman Coding – Exercise

14 EEE377 Lecture Notes14 Huffman Coding – Two variations When the probability of the combined symbol is found to equal another probability in the list, we may proceed by placing the probability of the new symbol as high as possible or as low as possible.

15 EEE377 Lecture Notes15 Huffman Coding – Two variations

16 EEE377 Lecture Notes16 Huffman Coding – Two variations

17 EEE377 Lecture Notes17 Huffman Coding – Two variations Which one to choose?

18 EEE377 Lecture Notes18 Huffman Coding – Exercise SymbolS0S0 S1S1 S2S2 S3S3 S4S4 S5S5 S6S6 Probability0.25 0.125 0.0625 Compute the Huffman code by placing the probability of the combined symbol as high as possible. What is the average code-word length?

19 EEE377 Lecture Notes19 Huffman Coding – Exercise Answer SymbolS0S0 S1S1 S2S2 S3S3 S4S4 S5S5 S6S6 Probability0.25 0.125 0.0625

20 EEE377 Lecture Notes20 Huffman Coding – Exercise

21 EEE377 Lecture Notes21 Huffman Coding – extended form The source is then extended to order two.

22 EEE377 Lecture Notes22 Huffman Coding – extended form

23 EEE377 Lecture Notes23 Lempel-Ziv Coding – a type of prefix code Basic idea : Parse the source data stream into segments that are the shortest subsequences not encountered previously Consider an input binary sequence 000101110010100101… Assume that the binary symbols 0 and 1 are already stored Subsequences stored0,1 Data to be parsed000101110010100101… With symbols 0 and 1 already stored, the shortest subsequence encountered for the first time is 00, so Subsequences stored0,1,00 Data to be parsed0101110010100101… The second shortest subsequence not seen before is 01,so Subsequences stored0,1,00,01 Data to be parsed01110010100101…

24 EEE377 Lecture Notes24 Lempel-Ziv Coding – a type of prefix code The next shortest subsequence not seen before is 011,so Subsequences stored0,1,00,01,011 Data to be parsed10010100101… Continue until the given data stream has been completely parsed Numerical Positions: 1 2 3 4 5 6 7 8 9 Subsequences: 0 1 00 01 011 10 010 100 101 Numerical representations: 11 12 42 21 41 61 62 Binary encoded blocks: 0010 0011 1001 0100 1000 1100 1101

25 EEE377 Lecture Notes25 Lempel-Ziv Coding – Exercise Encode the following sequence using Lempel-Ziv algorithm assuming that 0 and 1 are already stored 11101001100010110100….

26 EEE377 Lecture Notes26 Lempel-Ziv Coding – Exercise Answer Encode the following sequence using Lempel-Ziv algorithm assuming that 0 and 1 are already stored 11101001100010110100….

27 EEE377 Lecture Notes27 Lempel-Ziv Coding – Exercise Answer Encode the following sequence using Lempel-Ziv algorithm assuming that 0 and 1 are already stored 11101001100010110100….

28 EEE377 Lecture Notes28 Lempel-Ziv Coding – Exercise Answer Encode the following sequence using Lempel-Ziv algorithm assuming that 0 and 1 are already stored 11101001100010110100….

29 EEE377 Lecture Notes29 Lempel-Ziv Coding – Exercise Answer Encode the following sequence using Lempel-Ziv algorithm assuming that 0 and 1 are already stored 11101001100010110100…. 1000,


Download ppt "EEE377 Lecture Notes1 EEE436 DIGITAL COMMUNICATION Coding En. Mohd Nazri Mahmud MPhil (Cambridge, UK) BEng (Essex, UK) Room 2.14."

Similar presentations


Ads by Google