Project

General

Profile

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


๐Ÿงฉ 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