mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
25 lines
866 B
TypeScript
25 lines
866 B
TypeScript
import React from 'react';
|
|
|
|
export const PostProcessingWIP = () => {
|
|
return (
|
|
<div className="work-in-progress post-processing-work-in-progress">
|
|
<h1>Post Processing</h1>
|
|
<p>
|
|
Invoke AI offers a wide variety of post processing features. Image
|
|
Upscaling and Face Restoration are already available in the WebUI. You
|
|
can access them from the Advanced Options menu of the Text To Image and
|
|
Image To Image tabs. You can also process images directly, using the
|
|
image action buttons above the current image display or in the viewer.
|
|
</p>
|
|
<p>
|
|
A dedicated UI will be released soon to facilitate more advanced post
|
|
processing workflows.
|
|
</p>
|
|
<p>
|
|
The Invoke AI Command Line Interface offers various other features
|
|
including Embiggen.
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|