Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
rupeshs/fastsdcpu
tejani
/
Another
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d8ccfd5
Another
/
src
/
backend
/
annotators
/
control_interface.py
rupeshs
Updated to latest FastSD
c7f95a6
about 1 month ago
raw
Copy download link
history
blame
Safe
202 Bytes
from
abc
import
ABC, abstractmethod
from
PIL
import
Image
class
ControlInterface
(
ABC
):
@abstractmethod
def
get_control_image
(
self,
image: Image,
) -> Image:
pass