Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
abr-6024
/
proofyx
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
proofyx
/
utils
/
image_utils.py
muhammedsayeedurrahman
Initial commit: AI Authenticity Checker
a434b46
7 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
107 Bytes
from
PIL
import
Image
def
load_rgb_image
(
path
):
img = Image.
open
(path)
return
img.convert(
"RGB"
)