Actions
Code » History » Revision 2
« Previous |
Revision 2/5
(diff)
| Next »
Yaroslav MAYDEBURA, 10/30/2025 04:16 PM

💻 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 months ago · 2 revisions