updateOutputImage()

in src/nodes/shared/depth-estimation-viewer.ts [130:141]


  updateOutputImage() {
    if (this.services) {
      const outputImage = {
        canvasId: this.services.resourceService.put(this.canvas),
      };
      this.dispatchEvent(
        new CustomEvent("outputs", {
          detail: { image: outputImage },
        })
      );
    }
  }