Full-stack application for predicting where humans look in images using DeepGaze saliency models. Includes heatmap overlays, gaze sequence prediction, hotspot detection, AOI analysis, rule-based insights, optional Claude AI design analysis, and professional PDF report generation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
406 B
Python
12 lines
406 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import analysis, aoi, comparison, health, projects, reports
|
|
|
|
api_router = APIRouter(prefix="/api")
|
|
|
|
api_router.include_router(health.router)
|
|
api_router.include_router(projects.router)
|
|
api_router.include_router(analysis.router)
|
|
api_router.include_router(aoi.router)
|
|
api_router.include_router(comparison.router)
|
|
api_router.include_router(reports.router)
|