From 50135b726e0a024086aefb23314b70f565690d7c Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Mon, 12 Jun 2023 08:53:09 +1200 Subject: [PATCH] fix: git stash --- .../api/models/HedImageProcessorInvocation.ts | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/invokeai/frontend/web/src/services/api/models/HedImageProcessorInvocation.ts b/invokeai/frontend/web/src/services/api/models/HedImageProcessorInvocation.ts index 1132012c5a..6dea43dc32 100644 --- a/invokeai/frontend/web/src/services/api/models/HedImageProcessorInvocation.ts +++ b/invokeai/frontend/web/src/services/api/models/HedImageProcessorInvocation.ts @@ -7,30 +7,26 @@ import type { ImageField } from './ImageField'; /** * Applies HED edge detection to image */ -export type HedImageProcessorInvocation = { +export type HedImageprocessorInvocation = { /** * The id of this node. Must be unique among all nodes. */ id: string; - /** - * Whether or not this node is an intermediate node. - */ - is_intermediate?: boolean; type?: 'hed_image_processor'; /** - * The image to process + * image to process */ image?: ImageField; /** - * The pixel resolution for detection + * pixel resolution for edge detection */ detect_resolution?: number; /** - * The pixel resolution for the output image + * pixel resolution for output image */ image_resolution?: number; /** - * Whether to use scribble mode + * whether to use scribble mode */ scribble?: boolean; };