DecoLens SDK
    Preparing search index...

    Interface AnalysisResponse

    Represents the analysis of a room's aesthetic and corresponding artwork recommendations.

    interface AnalysisResponse {
        ambiance: string;
        colors: string[];
        lighting: string;
        materials: string;
        purpose: string;
        recommendations: { artworkIds: string[]; justification: string }[];
        summary: string;
    }
    Index

    Properties

    ambiance: string

    Ambiance of the room.

    colors: string[]

    Prominent colors in the room in HEX values.

    lighting: string

    Lighting condition of the room.

    materials: string

    Materials used in the room.

    purpose: string

    Type or purpose of the room.

    recommendations: { artworkIds: string[]; justification: string }[]

    Recommendations for artworks.

    Type declaration

    • artworkIds: string[]

      Ids of artworks being recommended.

    • justification: string

      Reason why these artworks are being recommended.

    summary: string

    Overall aesthetic analysis summary of the room.