Project

General

Profile

About our project » History » Version 10

Jordan Keiwein LAY, 10/30/2025 02:13 PM

1 9 Anderson PHILLIP
[[Wiki|← Back to Start Page]]
2
3 8 Anderson PHILLIP
h1. Project Details
4 1 Jordan Keiwein LAY
5 10 Jordan Keiwein LAY
---
6
7 1 Jordan Keiwein LAY
h2. Overview
8
9 2 HNIN Ei Shwe Yee
The goal of this project is to create a unified display by merging two projector images into one.  
10
To achieve this, we employed techniques such as *gamma correction*, *alpha blending*, and *intensity adjustments* to refine the final output.
11
12
The project team is organized into several roles:
13
* Project Manager
14
* Team Leader
15
* Doxygen Documentation Team
16
* Wiki Team
17
* Coding Team
18
* UML Design Team
19 1 Jordan Keiwein LAY
20 10 Jordan Keiwein LAY
---
21 1 Jordan Keiwein LAY
22 7 HNIN Ei Shwe Yee
h2. Software and Tools
23 1 Jordan Keiwein LAY
24 7 HNIN Ei Shwe Yee
* *Redmine* – Used to manage project tasks, track progress, and organize team activities.
25
* *Python / OpenCV* – Utilized for image processing operations such as blending, gamma correction, and intensity adjustments.
26
* *Doxygen* – Employed to generate detailed code documentation automatically.
27
* *Astah* – Used to design and visualize UML diagrams representing the system’s structure and workflow.
28 1 Jordan Keiwein LAY
29 10 Jordan Keiwein LAY
---
30 1 Jordan Keiwein LAY
31 7 HNIN Ei Shwe Yee
h2. Technology
32 1 Jordan Keiwein LAY
33 7 HNIN Ei Shwe Yee
We plan to use a single flat-screen display illuminated by two projectors connected to separate computers, allowing both images to be projected simultaneously and combined into one seamless image.
34 1 Jordan Keiwein LAY
35 7 HNIN Ei Shwe Yee
To accomplish this, we will apply:
36
* Gamma correction method
37
* Alpha blending
38
* Intensity modification
39 1 Jordan Keiwein LAY
40 7 HNIN Ei Shwe Yee
p=. !{width:800px}car.png!
41 1 Jordan Keiwein LAY
42 10 Jordan Keiwein LAY
---
43
44 7 HNIN Ei Shwe Yee
h2. Alpha Blending Method
45 1 Jordan Keiwein LAY
46 7 HNIN Ei Shwe Yee
Alpha blending merges two images using a specific *alpha value* that determines transparency levels.  
47
This process is crucial in rendering and game development for combining visual elements smoothly and reducing jagged edges.
48 1 Jordan Keiwein LAY
49 7 HNIN Ei Shwe Yee
Our program uses:
50
* *Tkinter* – for the graphical interface  
51
* *OpenCV* – for image manipulation  
52
* *PIL* – for image rendering  
53 1 Jordan Keiwein LAY
54 7 HNIN Ei Shwe Yee
Users can load configuration files, apply gamma correction and alpha blending, and view/save the processed images.
55
!blendingexmaple.jpg!
56 1 Jordan Keiwein LAY
57 7 HNIN Ei Shwe Yee
External reference:  
58
[https://takinginitiative.net/2010/04/09/directx-10-tutorial-6-transparency-and-alpha-blending/]
59 1 Jordan Keiwein LAY
60 10 Jordan Keiwein LAY
---
61 7 HNIN Ei Shwe Yee
62
h2. Gamma Correction Method
63
64
This project uses a technique known as *gamma correction* , which modifies an image’s brightness by adjusting the luminance of each pixel in a *non-linear* way. This method aligns image brightness with *human visual perception* , as the human eye is more sensitive to variations in darker tones than in brighter ones. This biological adaptation allows us to see effectively across a wide range of lighting conditions. Gamma correction applies a *power-law transformation* to pixel values, as represented by the following equation:
65
!{width:800px}equation.png!
66
67
When the gamma value (γ) is greater than 1, the image appears darker; when it is less than 1, the image appears brighter.
68
Note: Since pixel intensity values range between 0 and 255, the process involves first normalizing the image (dividing by 255), then applying the power function using the specified gamma value, and finally scaling the result back to the original 0–255 range.
69
70
*[Case1: γ=1.0(Before Gamma Correction)]*
71
72
p=. !{width:800px}before.png!
73
External reference:  
74
[http://rs.aoyaman.com/seminar/about10.html]
75
76
*[Case2: γ=0.8(After Gamma Correction)]*
77
78
p=. !{width:800px}after.png!
79
External reference:  
80
[http://rs.aoyaman.com/seminar/about10.html]
81
82
*[Case3: γ=2.0(After Gamma Correction)]*
83
84
p=. !{width:800px}after2.png!
85
External reference:
86
[http://rs.aoyaman.com/seminar/about10.html]
87 1 Jordan Keiwein LAY
88 10 Jordan Keiwein LAY
---
89
90 7 HNIN Ei Shwe Yee
h2. Intensity Modification
91
92
This method adjusts brightness at image edges using gamma correction and alpha blending depending on *image_side* value:
93
* image_side = 1 → intensity decreases toward the left edge  
94
* image_side = 0 → intensity decreases toward the right edge  
95 1 Jordan Keiwein LAY
By combining gamma correction and alpha blending, the method produces a smooth fading effect along the edges, allowing the image to blend seamlessly with the background or another image.
96 10 Jordan Keiwein LAY
97
---
98 7 HNIN Ei Shwe Yee
99
h2. Transparency
100
101
h3. Gradient Mask Creation
102
103
* The *create_mask()* method (in *MaskCreator* class) generates a smooth transparency gradient using the *smoothstep* function.
104
* This gradient determines the transparency level across the masked region, providing a non-linear transition from fully transparent to fully opaque (or vice versa).
105
* The smoothstep function is used to ensure a gradual and visually smooth change in opacity, minimizing harsh edges.
106
107
h3. Transparency Factor
108
109
* The *transparency_factor* parameter scales the gradient values, directly influencing overall transparency.
110
111
112
* Lower values = more transparent; values closer to 1 = higher opacity.
113
114
h3. Alpha Blending
115
116
* The *alpha_blending()* method applies the alpha gradient to the image within a defined *Region of Interest (ROI)*.
117
* Blending follows the equation:
118
119
p=. *blended = (α × ROI) + (1 − α) × background*
120
121
where:
122
(α × ROI): applies the transparency gradient to the image
123
(1 − α) × background : ensures a gradual transition into the black background.
124
125
h3. Transparency Side Control
126
127
* The direction of the gradient depends on *image_side*:
128
  *Right side* → gradient applied as-is
129
  *Left side* → gradient reversed
130
131
By combining the smoothstep gradient, transparency factor scaling, and alpha blending, this method enables precise control of transparency on the desired side of
132
the image, producing a seamless blending effect.