|
@@ -5,7 +5,6 @@
|
5
|
5
|

|
6
|
6
|

|
7
|
7
|
|
8
|
|
-[Verano 2016 - Ive- Tatiana]
|
9
|
8
|
|
10
|
9
|
Arrays help us to store and work with groups of data of the same type. The data is stored in consecutive memory spaces which can be accessed by using the name of the array and indexes or subscripts that indicate the position where the data is stored. Repetition structures provide us a simple way of accessing the data within an array. In this laboratory experience, you will be using nested loops to process bi-dimensional arrays and implement the functionality of a green-screen.
|
11
|
10
|
|
|
@@ -55,7 +54,7 @@ Figure 1: Example of the expected results. The object of interest is the hand ca
|
55
|
54
|
|
56
|
55
|
For illustration purposes, let's call the image with the solid background *image A* and let's say that the solid color in the background has an RGB `0x00ff00` (pure green). We will refer to the image with the interesting background as *image B*. Let's also assume that both images are the same size (width and height).
|
57
|
56
|
|
58
|
|
-To produce the merged image (*image C*), we could start by completely copying *image B* to *image *C*. Then, to insert only the object of interest into the merged image we could traverse *image A* pixel by pixel. We would compare the color of each pixel *p* in *image A* to the color `0x00FF00`, if they are *similar* we do nothing (because it means that this pixel is part of the solid color background). If the color of *p* is not *similar* to `0x00FF00`, we modify the corresponding pixel in *image C*, copying the color of the object's pixel to the merged image.
|
|
57
|
+To produce the merged image (*image C*), we could start by completely copying *image B* to *image C*. Then, to insert only the object of interest into the merged image we could traverse *image A* pixel by pixel. We would compare the color of each pixel *p* in *image A* to the color `0x00FF00`, if they are *similar* we do nothing (because it means that this pixel is part of the solid color background). If the color of *p* is not *similar* to `0x00FF00`, we modify the corresponding pixel in *image C*, copying the color of the object's pixel to the merged image.
|
59
|
58
|
|
60
|
59
|
---
|
61
|
60
|
|
|
@@ -268,7 +267,7 @@ where $$N_R$$, $$N_G$$, and $$N_B$$ are the red, green and blue components of th
|
268
|
267
|
|
269
|
268
|
### Exercise 3 - Create a Composite Image placing the Object in a Specified Position
|
270
|
269
|
|
271
|
|
-The widget that displays the background has been programmed to register the position where the user clicks. In this exercise you will program the `MergeImages` function so that the position that user clicks in the background image is used as the *top left* corner where the *object* image will be displayed in the merged image. The figures 7 and 8 illustrate the effect. Note the *Selected Coord* values under the images.
|
|
270
|
+The widget that displays the background has been programmed to register the position where the user clicks. In this exercise you will program the `MergeImages` function so that the position where the user clicks on the background image is used as the *top left* corner where the *object* image will be displayed in the merged image. The figures 7 and 8 illustrate the effect. Note the *Selected Coord* values under the images.
|
272
|
271
|
|
273
|
272
|
|
274
|
273
|
---
|
|
@@ -329,7 +328,7 @@ Use "Deliverable" in Moodle to upload the `filter.cpp` file that contains the `M
|
329
|
328
|
|
330
|
329
|
### References
|
331
|
330
|
|
332
|
|
-[1] http://en.wikipedia.org/wiki/Green_screen_(disambiguation
|
|
331
|
+[1] http://en.wikipedia.org/wiki/Green_screen_(disambiguation)
|
333
|
332
|
|
334
|
333
|
[2] http://en.wikipedia.org/wiki/Chroma_key
|
335
|
334
|
|