Spaces:
Sleeping
Sleeping
File size: 8,963 Bytes
5119d93 31385aa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | import streamlit as st
import torch
import torch.nn as nn
from PIL import Image
import numpy as np
from torchvision import transforms
import io
# Set page config
st.set_page_config(
page_title="Face β Sketch CycleGAN",
page_icon="π¨",
layout="wide"
)
# Generator Architecture (same as training)
class ResidualBlock(nn.Module):
def __init__(self, in_channels):
super(ResidualBlock, self).__init__()
self.block = nn.Sequential(
nn.ReflectionPad2d(1),
nn.Conv2d(in_channels, in_channels, kernel_size=3),
nn.InstanceNorm2d(in_channels),
nn.ReLU(inplace=True),
nn.ReflectionPad2d(1),
nn.Conv2d(in_channels, in_channels, kernel_size=3),
nn.InstanceNorm2d(in_channels)
)
def forward(self, x):
return x + self.block(x)
class Generator(nn.Module):
def __init__(self, input_channels=3, output_channels=3, num_residual_blocks=9):
super(Generator, self).__init__()
model = [
nn.ReflectionPad2d(3),
nn.Conv2d(input_channels, 64, kernel_size=7),
nn.InstanceNorm2d(64),
nn.ReLU(inplace=True)
]
in_channels = 64
out_channels = in_channels * 2
for _ in range(2):
model += [
nn.Conv2d(in_channels, out_channels, kernel_size=3, stride=2, padding=1),
nn.InstanceNorm2d(out_channels),
nn.ReLU(inplace=True)
]
in_channels = out_channels
out_channels = in_channels * 2
for _ in range(num_residual_blocks):
model += [ResidualBlock(in_channels)]
out_channels = in_channels // 2
for _ in range(2):
model += [
nn.ConvTranspose2d(in_channels, out_channels, kernel_size=3, stride=2,
padding=1, output_padding=1),
nn.InstanceNorm2d(out_channels),
nn.ReLU(inplace=True)
]
in_channels = out_channels
out_channels = in_channels // 2
model += [
nn.ReflectionPad2d(3),
nn.Conv2d(64, output_channels, kernel_size=7),
nn.Tanh()
]
self.model = nn.Sequential(*model)
def forward(self, x):
return self.model(x)
# Cache models to avoid reloading
@st.cache_resource
def load_models():
"""Load both generator models"""
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# Load Photo β Sketch model
G_AB = Generator().to(device)
checkpoint_ab = torch.load('photo_to_sketch.pth', map_location=device)
G_AB.load_state_dict(checkpoint_ab['model_state_dict'])
G_AB.eval()
# Load Sketch β Photo model
G_BA = Generator().to(device)
checkpoint_ba = torch.load('sketch_to_photo.pth', map_location=device)
G_BA.load_state_dict(checkpoint_ba['model_state_dict'])
G_BA.eval()
return G_AB, G_BA, device
def preprocess_image(image, target_size=256):
"""Preprocess image for model input"""
transform = transforms.Compose([
transforms.Resize((target_size, target_size)),
transforms.ToTensor(),
transforms.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5])
])
image = image.convert('RGB')
return transform(image).unsqueeze(0)
def postprocess_image(tensor):
"""Convert model output back to PIL Image"""
image = tensor.cpu().squeeze().detach().numpy()
image = image.transpose(1, 2, 0)
image = (image * 0.5 + 0.5).clip(0, 1) # Denormalize
image = (image * 255).astype(np.uint8)
return Image.fromarray(image)
def detect_image_type(image):
"""
Simple heuristic to detect if image is a sketch or photo
Sketches typically have higher contrast and less color variation
"""
img_array = np.array(image.convert('L'))
# Calculate statistics
std_dev = np.std(img_array)
mean_val = np.mean(img_array)
# Sketches tend to have higher std deviation and be closer to extremes
if std_dev > 80 and (mean_val > 180 or mean_val < 100):
return "sketch"
else:
return "photo"
def convert_image(image, model, device):
"""Convert image using the specified model"""
input_tensor = preprocess_image(image).to(device)
with torch.no_grad():
output_tensor = model(input_tensor)
return postprocess_image(output_tensor)
# Main App
def main():
st.title("π¨ Face β Sketch CycleGAN")
st.markdown("Convert photos to sketches and sketches to photos using CycleGAN")
# Load models
try:
G_AB, G_BA, device = load_models()
st.success(f"β
Models loaded successfully! Using: {device}")
except Exception as e:
st.error(f"β Error loading models: {str(e)}")
st.stop()
# Sidebar
st.sidebar.header("βοΈ Settings")
conversion_mode = st.sidebar.radio(
"Conversion Mode",
["Auto-detect", "Photo β Sketch", "Sketch β Photo"],
help="Auto-detect will automatically determine the input type"
)
# Main content
col1, col2 = st.columns(2)
with col1:
st.header("π€ Input")
upload_method = st.radio("Upload method:", ["Upload Image", "Use Camera"])
if upload_method == "Upload Image":
uploaded_file = st.file_uploader(
"Choose an image...",
type=['png', 'jpg', 'jpeg'],
help="Upload a photo or sketch"
)
if uploaded_file is not None:
input_image = Image.open(uploaded_file)
st.image(input_image, caption="Input Image", use_column_width=True)
else:
camera_photo = st.camera_input("Take a picture")
if camera_photo is not None:
input_image = Image.open(camera_photo)
st.image(input_image, caption="Captured Image", use_column_width=True)
else:
input_image = None
with col2:
st.header("π₯ Output")
if 'input_image' in locals() and input_image is not None:
# Determine conversion direction
if conversion_mode == "Auto-detect":
detected_type = detect_image_type(input_image)
st.info(f"π Detected: {detected_type.upper()}")
if detected_type == "photo":
output_image = convert_image(input_image, G_AB, device)
conversion_text = "Photo β Sketch"
else:
output_image = convert_image(input_image, G_BA, device)
conversion_text = "Sketch β Photo"
elif conversion_mode == "Photo β Sketch":
output_image = convert_image(input_image, G_AB, device)
conversion_text = "Photo β Sketch"
else: # Sketch β Photo
output_image = convert_image(input_image, G_BA, device)
conversion_text = "Sketch β Photo"
st.image(output_image, caption=f"Output ({conversion_text})", use_column_width=True)
# Download button
buf = io.BytesIO()
output_image.save(buf, format="PNG")
byte_im = buf.getvalue()
st.download_button(
label="β¬οΈ Download Result",
data=byte_im,
file_name=f"cyclegan_output_{conversion_text.replace(' β ', '_to_')}.png",
mime="image/png"
)
else:
st.info("π Upload or capture an image to see the conversion")
# Information section
with st.expander("βΉοΈ About this app"):
st.markdown("""
### CycleGAN Face-Sketch Converter
This application uses CycleGAN (Cycle-Consistent Generative Adversarial Networks)
to convert between face photos and sketches.
**Features:**
- π¨ Photo to Sketch conversion
- πΌοΈ Sketch to Photo conversion
- π Automatic input type detection
- πΈ Camera support
**How it works:**
CycleGAN learns to translate images between two domains without paired examples.
It uses cycle consistency loss to ensure the translation is meaningful.
**Model Details:**
- Architecture: ResNet-based Generator
- Training: Unpaired face-sketch dataset
- Image size: 256x256 pixels
""")
# Footer
st.markdown("---")
st.markdown(
"<div style='text-align: center'>Made with β€οΈ using Streamlit and PyTorch</div>",
unsafe_allow_html=True
)
if __name__ == "__main__":
main() |