Project

General

Profile

Actions

Project Overview » History » Revision 13

« Previous | Revision 13/38 (diff) | Next »
Mitsuki EIKI, 12/12/2024 03:56 PM


Project Overview

Wiki | About_Us | Project_Overview | UML_Diagram

Project Structure

Team Structure

  • Roles
    • Leader
    • Manager
    • Programmer
    • Wiki Designer
    • UML Designer
    • Commentor

Management Methods

  • Redmine: Redmine is used to manage all the tasks and progress.
  • Doxygen: Doxygen is used to document the codes.
  • Astah: Astah is used to create UML diagram.
  • Python & OpenCV: Python and OpenCV are used for image processing.

====================================================================================================================================

Technology Overview
Our project aims to create a single, large, and seamless image on a flat-screen display using two projectors and two laptops. The projectors are aligned to overlap on the screen, with images resized to fully utilize the resolution of both devices. To enhance image quality and achieve smooth blending in the overlapping region, we employ techniques such as gamma correction, alpha blending, and intensity modification.

The setup is designed to support variable screen widths and arbitrary distances between the projectors and the canvas. Users can define the projected image and specify the overlapping region in pixels. Based on this input and optimal projector configuration, the system ensures a high-quality, unified display that appears as a single cohesive image.

Alpha Blending

Problem and Solution:

The general idea of alpha blending extends from techniques used in movie rendering, or in this case, overlapping projection. The problem with overlapping projection is that the overlapping area is considered as collisions where such conflicts need to be resolved. In the case of computer rendering, the most common method is referred as the painter's method, which would only render one of the overlapping projections. Alpha blending is a proposed solution to would blend both projections. The problem of blending is the stacking luminosity of the two projections. Alpha blending describes the technique to find a alpha coefficient to adjust the luminosity of both projects under the overlapping area.

Details:

Gamma Blending

Updated by Mitsuki EIKI 5 months ago · 13 revisions