r/mazes

Need advice on solving complex arrow/maze puzzles using Computer Vision & Logic Solvers (Low accuracy issues)
▲ 2 r/mazes+1 crossposts

Need advice on solving complex arrow/maze puzzles using Computer Vision & Logic Solvers (Low accuracy issues)

Hi everyone,
I'm working on an automated solver for a complex arrow/maze puzzle game (similar to the image attached).
Here is my current workflow:

  1. Detection: I use a custom YOLO model to detect arrowheads and their bounding box coordinates from screen captures.
  2. Grid Mapping: I map the detected center coordinates of arrowheads onto a fixed grid system.
  3. Solving: I pass the grid data into a custom logic/emulator engine to calculate the correct sequence of moves (arrows to tap).
    The Main Problem:
    My solver accuracy is very low. Here are the core technical challenges I'm running into:
    Inaccurate Grid Mapping: The arrows are densely packed with varying paths and lengths. Snapping bounding boxes to a rigid fixed grid often misaligns the true position of the arrow shafts and heads.
    Complex/Overlapping Detection: Because the arrows bend and fold, YOLO often detects multiple arrowheads in the same calculated grid cell, or misinterprets arrow directions.
    Solver Logic Failure: Due to noisy input from the detection stage, the logic solver either fails to find a valid sequence or generates incorrect moves that block execution halfway through.
    Has anyone dealt with a similar vector/maze graph detection problem? What would be a more reliable approach than simple YOLO + fixed grid snapping? Should I look into contour analysis, OCR/graph traversal, or skeletonization algorithms (like Medial Axis Transform) to trace the paths directly?
    Any suggestions, code examples, or architectural advice would be greatly appreciated!
u/Maximum-Fox-2627 — 17 hours ago
▲ 21 r/mazes

Beach mazes Seabrook wa

Each one lasted less than an hour before being claimed by the ocean.

u/iconeo — 4 days ago
▲ 186 r/mazes

Find the way out. Don't take your time.

Isometric maze with elevation changes, Great Old Ones theme.
AI-assisted, generator and environment both. Raw version included.
Enjoy!

u/mold0101 — 8 days ago
▲ 11 r/mazes+1 crossposts

CodeGolfed: a codegolfed golf game in 1020 bytes

it's usually easy, but sometimes hard...

github.com
u/woqr — 12 days ago
▲ 22 r/mazes

a puzzly maze

every time you grab a circle you gain the ability to make one hole in a wall in the future (only one per circle). that hole cant be moved but can be reused. there should be multiple solutions but only one path.

u/Adorable-Broccoli-16 — 13 days ago