|
@@ -169,7 +169,7 @@ We may do the following to embed each trio of bits `b2, b1, b0`:
|
169
|
169
|
|
170
|
170
|
```
|
171
|
171
|
Input: p: a pixel
|
172
|
|
-b2,b1,b0: the trio of bits
|
|
172
|
+ b2,b1,b0: the trio of bits
|
173
|
173
|
Output: modifiedPixel: the pixel with the embedded trio
|
174
|
174
|
========
|
175
|
175
|
1. r = red component of p
|
|
@@ -224,10 +224,7 @@ The following are the color codes for first eight pixels of the original and mod
|
224
|
224
|
Question:
|
225
|
225
|
What message is hidden (using the least significant bit technique) in an image whose first 8 pixels are:
|
226
|
226
|
|
227
|
|
-```
|
228
|
|
-0x545554 0x666667 0x444544 0x333232
|
229
|
|
-0xff0000 0x0100ff 0x00ff00 0x10aaba
|
230
|
|
-```
|
|
227
|
+`0x545554 0x666667 0x444544 0x333232 0xff0000 0x0100ff 0x00ff00 0x10aaba`
|
231
|
228
|
|
232
|
229
|
Explain your answer.
|
233
|
230
|
|
|
@@ -236,33 +233,19 @@ Explain your answer.
|
236
|
233
|
|
237
|
234
|
---
|
238
|
235
|
|
239
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-01.html"
|
240
|
|
-<br>
|
241
|
|
-
|
242
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-02.html"
|
243
|
|
-<br>
|
244
|
|
-
|
245
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-03.html"
|
246
|
|
-<br>
|
247
|
236
|
|
248
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-04.html"
|
249
|
|
-<br>
|
250
|
237
|
|
251
|
238
|
!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-05.html"
|
252
|
239
|
<br>
|
253
|
240
|
|
254
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-06.html"
|
255
|
|
-<br>
|
256
|
241
|
|
257
|
|
-!INCLUDE "../../eip-diagnostic/steganography/en/diag-steganography-07.html"
|
258
|
|
-<br>
|
259
|
242
|
|
260
|
243
|
---
|
261
|
244
|
|
262
|
245
|
---
|
263
|
246
|
|
264
|
247
|
|
265
|
|
-##Laboratory Session
|
|
248
|
+## Laboratory Session
|
266
|
249
|
|
267
|
250
|
In today's laboratory experience you will complete a steganography application to extract hidden messages from images.
|
268
|
251
|
|