RTMP Server with Fusion Capabilities and Removing Flying-Pixels

Plan (Mar 28, 29 2024): - Delayed due to exams + Mid Presentation to Prof. Han

Sender Receiver
1. Calibrate cameras before capture (chessboard)
~~2. Retrieve the following data:

July 9-10: Organize Code (Check github push)

**Big Solution!!! (**July 15-July 18)

  1. Found a problem with our initial design → edge detection was done in a wrong way

    depth_edge_removed = depth - threshold_result 
    

    This was wrong because threshold_result is a hot-encoding matrix that just shows the pixels where edges are found. Above is changed to :

    new_threshold_result = 1 - threshold_result (get the inverse)
    depth_edge_removed = depth * new_threshold_result
    
  2. Ablation Study

Triangle (Comparisons)

Triangle (Comparisons)

BlenDR (Comparisons)

BlenDR (Comparisons)

  1. I wanted to try out how DRACO GROOT performs when the generated point cloud is transmitted.

  2. DRACO GROOT (For fair evaluation purposes) → stuck for a day due to incomplete code

    GROOT.pdf

    1. Changes Made:
      1. Allowed for Morton code Re-ordering
      2. JPEG Decompression newly added
      3. Point Cloud Generation code newly added

SERIAL REP. of RGB of Point Cloud

SERIAL REP. of RGB of Point Cloud

MORTON Code of RGB of Point Cloud

MORTON Code of RGB of Point Cloud

Untitled