mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-14 07:45:12 -05:00
chore(ui): regen api client
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
|
||||
import type { ImageField } from './ImageField';
|
||||
|
||||
/**
|
||||
* Applies Midas depth processing to image
|
||||
*/
|
||||
export type MidasDepthImageProcessorInvocation = {
|
||||
/**
|
||||
* The id of this node. Must be unique among all nodes.
|
||||
*/
|
||||
id: string;
|
||||
type?: 'midas_depth_image_processor';
|
||||
/**
|
||||
* image to process
|
||||
*/
|
||||
image?: ImageField;
|
||||
/**
|
||||
* Midas parameter a = amult * PI
|
||||
*/
|
||||
a_mult?: number;
|
||||
/**
|
||||
* Midas parameter bg_th
|
||||
*/
|
||||
bg_th?: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user