File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
invokeai/frontend/web/src/services/api/models Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff 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} ;
You can’t perform that action at this time.
0 commit comments