Project

General

Profile

Code » History » Version 2

Yaroslav MAYDEBURA, 10/30/2025 04:16 PM

1 1 Yaroslav MAYDEBURA
!https://media.tenor.com/4h8aXFiZ2rEAAAAM/coding-programming.gif!
2
3
h1. ๐Ÿ’ป Code & Documentation
4
5
---
6
7 2 Yaroslav MAYDEBURA
All source code is developed collaboratively using Redmine and documented via **Doxygen**.  
8 1 Yaroslav MAYDEBURA
This section will contain references to important code snippets, flow explanations, and system logic.
9
10
---
11
12
h2. ๐Ÿ“ Repository Links
13 2 Yaroslav MAYDEBURA
* [Redmine Repository (Private)](http://www.dh.is.ritsumei.ac.jp/redmine/projects/g12-2025-final-project/wiki/)  
14 1 Yaroslav MAYDEBURA
* [Doxygen Documentation (to be added)]  
15
16
---
17
18
h2. ๐Ÿงฉ Core Modules
19
|_. Module |_. Description |
20
| Image Processing | Core blending and correction logic |
21
| Calibration | Overlap detection and adjustment |
22
| UI / CLI | Interface for testing and visualization |
23
24
---
25
26
h2. ๐Ÿ“˜ Example Snippet
27
```python
28
def blend_images(image1, image2, alpha=0.5):
29
    return cv2.addWeighted(image1, alpha, image2, 1 - alpha, 0)