mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix: git stash
This commit is contained in:
parent
c647056287
commit
50135b726e
@ -7,30 +7,26 @@ import type { ImageField } from './ImageField';
|
|||||||
/**
|
/**
|
||||||
* Applies HED edge detection to image
|
* Applies HED edge detection to image
|
||||||
*/
|
*/
|
||||||
export type HedImageProcessorInvocation = {
|
export type HedImageprocessorInvocation = {
|
||||||
/**
|
/**
|
||||||
* The id of this node. Must be unique among all nodes.
|
* The id of this node. Must be unique among all nodes.
|
||||||
*/
|
*/
|
||||||
id: string;
|
id: string;
|
||||||
/**
|
|
||||||
* Whether or not this node is an intermediate node.
|
|
||||||
*/
|
|
||||||
is_intermediate?: boolean;
|
|
||||||
type?: 'hed_image_processor';
|
type?: 'hed_image_processor';
|
||||||
/**
|
/**
|
||||||
* The image to process
|
* image to process
|
||||||
*/
|
*/
|
||||||
image?: ImageField;
|
image?: ImageField;
|
||||||
/**
|
/**
|
||||||
* The pixel resolution for detection
|
* pixel resolution for edge detection
|
||||||
*/
|
*/
|
||||||
detect_resolution?: number;
|
detect_resolution?: number;
|
||||||
/**
|
/**
|
||||||
* The pixel resolution for the output image
|
* pixel resolution for output image
|
||||||
*/
|
*/
|
||||||
image_resolution?: number;
|
image_resolution?: number;
|
||||||
/**
|
/**
|
||||||
* Whether to use scribble mode
|
* whether to use scribble mode
|
||||||
*/
|
*/
|
||||||
scribble?: boolean;
|
scribble?: boolean;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user