Skip to content

Commit e051c45

Browse files
fix: git stash (#3528)
2 parents c647056 + 50135b7 commit e051c45

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

invokeai/frontend/web/src/services/api/models/HedImageProcessorInvocation.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,26 @@ import type { ImageField } from './ImageField';
77
/**
88
* Applies HED edge detection to image
99
*/
10-
export type HedImageProcessorInvocation = {
10+
export type HedImageprocessorInvocation = {
1111
/**
1212
* The id of this node. Must be unique among all nodes.
1313
*/
1414
id: string;
15-
/**
16-
* Whether or not this node is an intermediate node.
17-
*/
18-
is_intermediate?: boolean;
1915
type?: 'hed_image_processor';
2016
/**
21-
* The image to process
17+
* image to process
2218
*/
2319
image?: ImageField;
2420
/**
25-
* The pixel resolution for detection
21+
* pixel resolution for edge detection
2622
*/
2723
detect_resolution?: number;
2824
/**
29-
* The pixel resolution for the output image
25+
* pixel resolution for output image
3026
*/
3127
image_resolution?: number;
3228
/**
33-
* Whether to use scribble mode
29+
* whether to use scribble mode
3430
*/
3531
scribble?: boolean;
3632
};

0 commit comments

Comments
 (0)