Actions
Code » History » Revision 1
Revision 1/5
| Next »
Yaroslav MAYDEBURA, 10/30/2025 04:16 PM

💻 Code & Documentation¶
All source code is developed collaboratively using GitHub and documented via Doxygen.
This section will contain references to important code snippets, flow explanations, and system logic.
📁 Repository Links
- [GitHub Repository (Private)](https://github.com/)
- [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 · 1 revisions