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>
18 lines
247 B
Python
18 lines
247 B
Python
class OliVASError(Exception):
|
|
pass
|
|
|
|
|
|
class AnalysisNotFoundError(OliVASError):
|
|
pass
|
|
|
|
|
|
class ProjectNotFoundError(OliVASError):
|
|
pass
|
|
|
|
|
|
class ModelNotLoadedError(OliVASError):
|
|
pass
|
|
|
|
|
|
class ImageProcessingError(OliVASError):
|
|
pass
|