Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
clone3
/
FastGUI
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FastGUI
/
src
/
backend
/
annotators
/
control_interface.py
clone3
Upload 114 files
e3900a5
verified
18 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
214 Bytes
from
abc
import
ABC, abstractmethod
from
PIL
import
Image
class
ControlInterface
(
ABC
):
@abstractmethod
def
get_control_image
(
self,
image: Image,
) -> Image:
pass