Actions

๐ป Code & Documentation¶
All source code is developed collaboratively using Redmine and documented via Doxygen.
This section will contain references to important code snippets, flow explanations, and system logic.
๐ Repository Links
- [Redmine Repository (Private)](http://www.dh.is.ritsumei.ac.jp/redmine/projects/g12-2025-final-project/wiki/)
- [Doxygen Documentation (to be added)]
๐งฉ Core Modules
| Module | Description |
|---|---|
| Image Processing | Core blending and correction logic |
| Calibration | Overlap detection and adjustment |
| UI / CLI | Interface for testing and visualization |
๐ Example Snippet
```python
def blend_images(image1, image2, alpha=0.5):
return cv2.addWeighted(image1, alpha, image2, 1 - alpha, 0)¶
Updated by Yaroslav MAYDEBURA 3 days ago ยท 2 revisions