Interface ImageDisplayOptions

interface ImageDisplayOptions {
    completedEvent?: boolean;
    name?: string;
    persistence?: boolean;
    uid?: string;
    waitKey?: boolean;
    windowTitle?: string;
}

Hierarchy

  • SinkNodeOptions
    • ImageDisplayOptions

Properties

completedEvent?: boolean

Emit a completed event for this sink

Default

true
name?: string

User friendly name of the node Used for querying a node by its name.

persistence?: boolean

Store objects in data services

Default

true
uid?: string

Manually set the unique identifier of the node

waitKey?: boolean
windowTitle?: string