Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,109 +2,407 @@ import gradio as gr
|
|
| 2 |
import numpy as np
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
import cv2
|
| 5 |
-
from
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
#
|
| 9 |
-
#
|
| 10 |
-
|
| 11 |
-
def
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
| 13 |
ycrcb = cv2.cvtColor(img, cv2.COLOR_RGB2YCrCb)
|
| 14 |
-
|
| 15 |
-
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
f = np.fft.fft2(gray)
|
| 32 |
fshift = np.fft.fftshift(f)
|
| 33 |
-
magnitude =
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
def analyze_image(img_input):
|
| 43 |
-
if img_input is None:
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
if
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
else:
|
| 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 |
return fig, report
|
| 96 |
|
| 97 |
-
#
|
| 98 |
-
# INTERFACE
|
| 99 |
-
#
|
| 100 |
-
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
with gr.Row():
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
if __name__ == "__main__":
|
| 110 |
demo.launch()
|
|
|
|
| 2 |
import numpy as np
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
import cv2
|
| 5 |
+
from scipy import ndimage
|
| 6 |
+
|
| 7 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 8 |
+
# ๐ฌ MEDIASHIELD PRO v2.0 โ CORRECTION DES DรTECTIONS
|
| 9 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 10 |
+
|
| 11 |
+
def analyze_chrominance_noise(img):
|
| 12 |
+
"""
|
| 13 |
+
Dรฉtecte l'uniformitรฉ anormale du bruit chromatique.
|
| 14 |
+
Les IA gรฉnรจrent souvent du bruit trop rรฉgulier.
|
| 15 |
+
"""
|
| 16 |
ycrcb = cv2.cvtColor(img, cv2.COLOR_RGB2YCrCb)
|
| 17 |
+
cr = ycrcb[:, :, 1].astype(np.float32)
|
| 18 |
+
cb = ycrcb[:, :, 2].astype(np.float32)
|
| 19 |
|
| 20 |
+
# Variance locale sur des fenรชtres 5x5
|
| 21 |
+
cr_var = ndimage.generic_filter(cr, np.var, size=5)
|
| 22 |
+
cb_var = ndimage.generic_filter(cb, np.var, size=5)
|
| 23 |
+
|
| 24 |
+
# Ratio: รฉcart-type des variances / moyenne des variances
|
| 25 |
+
uniformity_cr = np.std(cr_var) / (np.mean(cr_var) + 1e-8)
|
| 26 |
+
uniformity_cb = np.std(cb_var) / (np.mean(cb_var) + 1e-8)
|
| 27 |
+
|
| 28 |
+
return (uniformity_cr + uniformity_cb) / 2, cr_var
|
| 29 |
|
| 30 |
+
def find_peaks(signal, threshold_factor=0.3):
|
| 31 |
+
"""Trouve les pics dans un signal 1D (pour dรฉtecter les grilles)"""
|
| 32 |
+
threshold = np.max(signal) * threshold_factor
|
| 33 |
+
peaks = []
|
| 34 |
+
for i in range(1, len(signal)-1):
|
| 35 |
+
if signal[i] > threshold and signal[i] > signal[i-1] and signal[i] > signal[i+1]:
|
| 36 |
+
peaks.append(i)
|
| 37 |
+
return peaks
|
| 38 |
|
| 39 |
+
def compute_radial_profile(image):
|
| 40 |
+
"""Calcule la moyenne radiale du spectre FFT"""
|
| 41 |
+
cy, cx = np.array(image.shape) // 2
|
| 42 |
+
y, x = np.indices(image.shape)
|
| 43 |
+
r = np.sqrt((x - cx)**2 + (y - cy)**2).astype(int)
|
| 44 |
+
tbin = ndimage.mean(image, labels=r, index=np.arange(0, min(cx, cy)))
|
| 45 |
+
return tbin[~np.isnan(tbin)]
|
| 46 |
+
|
| 47 |
+
def detect_ringing(radial_profile):
|
| 48 |
+
"""
|
| 49 |
+
Dรฉtecte les oscillations (ringing) dans le profil radial.
|
| 50 |
+
Caractรฉristique des modรจles de diffusion (SD, Midjourney).
|
| 51 |
+
"""
|
| 52 |
+
if len(radial_profile) < 10:
|
| 53 |
+
return 0
|
| 54 |
+
diff = np.diff(radial_profile)
|
| 55 |
+
sign_changes = np.sum(diff[1:] * diff[:-1] < 0)
|
| 56 |
+
return sign_changes / len(radial_profile)
|
| 57 |
+
|
| 58 |
+
def detect_grid_and_ringing(img):
|
| 59 |
+
"""
|
| 60 |
+
Dรฉtecte:
|
| 61 |
+
1. Les patterns de grille (StyleGAN, GANs)
|
| 62 |
+
2. Les artefacts circulaires (Diffusion models)
|
| 63 |
+
"""
|
| 64 |
+
gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY).astype(np.float32)
|
| 65 |
+
|
| 66 |
+
# FFT
|
| 67 |
f = np.fft.fft2(gray)
|
| 68 |
fshift = np.fft.fftshift(f)
|
| 69 |
+
magnitude = np.abs(fshift)
|
| 70 |
+
|
| 71 |
+
# Masquer le centre (basse frรฉquence)
|
| 72 |
+
rows, cols = gray.shape
|
| 73 |
+
crow, ccol = rows//2, cols//2
|
| 74 |
+
mask_radius = min(rows, cols) // 6
|
| 75 |
+
y, x = np.ogrid[:rows, :cols]
|
| 76 |
+
mask = (x - ccol)**2 + (y - crow)**2 <= mask_radius**2
|
| 77 |
+
magnitude[mask] = 0
|
| 78 |
+
|
| 79 |
+
# Dรฉtection de grille via projection
|
| 80 |
+
proj_x = np.sum(magnitude, axis=0)
|
| 81 |
+
proj_y = np.sum(magnitude, axis=1)
|
| 82 |
+
peaks_x = len(find_peaks(proj_x, 0.2))
|
| 83 |
+
peaks_y = len(find_peaks(proj_y, 0.2))
|
| 84 |
+
grid_score = (peaks_x + peaks_y) / 2
|
| 85 |
+
|
| 86 |
+
# Dรฉtection du ringing
|
| 87 |
+
radial = compute_radial_profile(magnitude)
|
| 88 |
+
ringing = detect_ringing(radial)
|
| 89 |
+
|
| 90 |
+
# Visualisation
|
| 91 |
+
fft_vis = np.log(magnitude + 1)
|
| 92 |
+
fft_vis = (fft_vis - fft_vis.min()) / (fft_vis.max() - fft_vis.min()) * 255
|
| 93 |
+
fft_vis = cv2.applyColorMap(fft_vis.astype(np.uint8), cv2.COLORMAP_VIRIDIS)
|
| 94 |
+
|
| 95 |
+
return grid_score, ringing, fft_vis
|
| 96 |
+
|
| 97 |
+
def detect_noise_characteristics(img):
|
| 98 |
+
"""
|
| 99 |
+
Analyse le bruit local (les images IA ont des statistiques de bruit anormales)
|
| 100 |
+
"""
|
| 101 |
+
gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
|
| 102 |
+
|
| 103 |
+
# Diffรฉrence entre image et version lissรฉe
|
| 104 |
+
blur = cv2.GaussianBlur(gray, (5, 5), 0)
|
| 105 |
+
noise = cv2.absdiff(gray, blur)
|
| 106 |
+
|
| 107 |
+
# Statistiques
|
| 108 |
+
noise_mean = np.mean(noise)
|
| 109 |
+
noise_std = np.std(noise)
|
| 110 |
+
|
| 111 |
+
# Analyse des gradients (Sobel)
|
| 112 |
+
sobelx = cv2.Sobel(gray, cv2.CV_64F, 1, 0, ksize=3)
|
| 113 |
+
sobely = cv2.Sobel(gray, cv2.CV_64F, 0, 1, ksize=3)
|
| 114 |
+
grad_mag = np.sqrt(sobelx**2 + sobely**2)
|
| 115 |
+
|
| 116 |
+
# Distribution des gradients
|
| 117 |
+
hist = np.histogram(grad_mag, bins=50, range=(0, 255))[0]
|
| 118 |
+
grad_uniformity = np.std(hist) / (np.mean(hist) + 1e-8)
|
| 119 |
+
|
| 120 |
+
# Hautes frรฉquences (Laplacian)
|
| 121 |
+
laplacian = cv2.Laplacian(gray, cv2.CV_64F).var()
|
| 122 |
+
|
| 123 |
+
return {
|
| 124 |
+
'noise_mean': noise_mean,
|
| 125 |
+
'noise_std': noise_std,
|
| 126 |
+
'grad_uniformity': grad_uniformity,
|
| 127 |
+
'laplacian': laplacian
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
def error_level_analysis(img, quality=85):
|
| 131 |
+
"""
|
| 132 |
+
ELA: Recompresser l'image et comparer.
|
| 133 |
+
Les zones gรฉnรฉrรฉes par IA ont souvent des niveaux d'erreur anormaux.
|
| 134 |
+
"""
|
| 135 |
+
encode_param = [int(cv2.IMWRITE_JPEG_QUALITY), quality]
|
| 136 |
+
_, enc = cv2.imencode('.jpg', cv2.cvtColor(img, cv2.COLOR_RGB2BGR), encode_param)
|
| 137 |
+
dec = cv2.imdecode(enc, 1)
|
| 138 |
+
dec_rgb = cv2.cvtColor(dec, cv2.COLOR_BGR2RGB)
|
| 139 |
+
|
| 140 |
+
diff = cv2.absdiff(img, dec_rgb)
|
| 141 |
+
ela_score = np.mean(diff)
|
| 142 |
+
|
| 143 |
+
# Amรฉliorer la visualisation
|
| 144 |
+
ela_enhanced = cv2.convertScaleAbs(diff, alpha=5.0)
|
| 145 |
+
|
| 146 |
+
return ela_score, ela_enhanced
|
| 147 |
+
|
| 148 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 149 |
+
# ๐ง ALGORITHME DE SCORING CORRIGร
|
| 150 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 151 |
+
|
| 152 |
+
def compute_ai_score(metrics):
|
| 153 |
+
"""
|
| 154 |
+
Systรจme de scoring pondรฉrรฉ avec logique floue.
|
| 155 |
+
Seuils calibrรฉs pour minimiser les faux positifs.
|
| 156 |
+
"""
|
| 157 |
+
score = 0
|
| 158 |
+
reasons = []
|
| 159 |
+
confidence = 0
|
| 160 |
+
|
| 161 |
+
# 1. GRID PATTERNS (GANs like StyleGAN) - Poids fort
|
| 162 |
+
if metrics['grid_score'] > 15:
|
| 163 |
+
score += 30
|
| 164 |
+
reasons.append("โ ๏ธ Strong grid patterns (GAN signature)")
|
| 165 |
+
confidence += 1
|
| 166 |
+
elif metrics['grid_score'] > 8:
|
| 167 |
+
score += 15
|
| 168 |
+
reasons.append("โก Weak grid patterns detected")
|
| 169 |
+
|
| 170 |
+
# 2. RINGING (Diffusion Models) - Poids fort
|
| 171 |
+
if metrics['ringing'] > 0.25:
|
| 172 |
+
score += 25
|
| 173 |
+
reasons.append("โ ๏ธ Circular artifacts (Stable Diffusion/Midjourney)")
|
| 174 |
+
confidence += 1
|
| 175 |
+
elif metrics['ringing'] > 0.15:
|
| 176 |
+
score += 12
|
| 177 |
+
reasons.append("โก Possible diffusion artifacts")
|
| 178 |
+
|
| 179 |
+
# 3. CHROMINANCE (Natural vs AI noise)
|
| 180 |
+
if metrics['chrom_uniformity'] < 1.0: # Trop uniforme = suspect
|
| 181 |
+
score += 15
|
| 182 |
+
reasons.append("โก Unnatural chrominance uniformity")
|
| 183 |
+
elif metrics['chrom_uniformity'] < 0.5:
|
| 184 |
+
score += 25
|
| 185 |
+
reasons.append("โ ๏ธ Artificial color noise detected")
|
| 186 |
+
confidence += 1
|
| 187 |
+
|
| 188 |
+
# 4. NOISE LEVEL
|
| 189 |
+
if metrics['noise_mean'] < 2.5: # Trop propre
|
| 190 |
+
score += 15
|
| 191 |
+
reasons.append("โก Suspiciously low noise (over-smoothed)")
|
| 192 |
+
elif metrics['noise_mean'] > 40: # Bruit artificiel
|
| 193 |
+
score += 10
|
| 194 |
+
reasons.append("โก Artificial noise pattern")
|
| 195 |
+
|
| 196 |
+
# 5. GRADIENT DISTRIBUTION
|
| 197 |
+
if metrics['grad_uniformity'] < 2.0:
|
| 198 |
+
score += 10
|
| 199 |
+
reasons.append("โก Unnatural edge distribution")
|
| 200 |
+
|
| 201 |
+
# 6. LAPLACIAN (Texture)
|
| 202 |
+
if metrics['laplacian'] < 50:
|
| 203 |
+
score += 10
|
| 204 |
+
reasons.append("โก Lack of fine texture details")
|
| 205 |
+
elif metrics['laplacian'] > 500000: # Images trรจs dรฉtaillรฉes (possible upscaling IA)
|
| 206 |
+
score += 10
|
| 207 |
+
reasons.append("โก Excessive sharpness (AI upscaling?)")
|
| 208 |
+
|
| 209 |
+
# 7. ELA
|
| 210 |
+
if metrics['ela_score'] < 1.5:
|
| 211 |
+
score += 15
|
| 212 |
+
reasons.append("โ ๏ธ Suspicious compression history")
|
| 213 |
+
confidence += 1
|
| 214 |
+
|
| 215 |
+
# Ajuster selon la confiance
|
| 216 |
+
if confidence >= 3:
|
| 217 |
+
score = min(score + 10, 100) # Bonus si plusieurs indicateurs forts
|
| 218 |
+
|
| 219 |
+
return min(score, 100), reasons
|
| 220 |
+
|
| 221 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 222 |
+
# ๐ฏ FONCTION PRINCIPALE CORRIGรE
|
| 223 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 224 |
+
|
| 225 |
def analyze_image(img_input):
|
| 226 |
+
if img_input is None:
|
| 227 |
+
return None, "Erreur : aucune image fournie"
|
| 228 |
+
|
| 229 |
+
# Conversion RGBA โ RGB si nรฉcessaire
|
| 230 |
+
if img_input.shape[2] == 4:
|
| 231 |
+
img = cv2.cvtColor(img_input, cv2.COLOR_RGBA2RGB)
|
| 232 |
+
else:
|
| 233 |
+
img = img_input.copy()
|
| 234 |
+
|
| 235 |
+
# Limiter la taille pour accรฉlรฉrer (mais garder la qualitรฉ)
|
| 236 |
+
h, w = img.shape[:2]
|
| 237 |
+
if max(h, w) > 1024:
|
| 238 |
+
scale = 1024 / max(h, w)
|
| 239 |
+
img = cv2.resize(img, (int(w*scale), int(h*scale)), interpolation=cv2.INTER_AREA)
|
| 240 |
+
|
| 241 |
+
# Exรฉcuter les analyses
|
| 242 |
+
chrom_uniformity, chrom_vis = analyze_chrominance_noise(img)
|
| 243 |
+
grid_score, ringing, fft_vis = detect_grid_and_ringing(img)
|
| 244 |
+
noise_data = detect_noise_characteristics(img)
|
| 245 |
+
ela_score, ela_vis = error_level_analysis(img)
|
| 246 |
+
|
| 247 |
+
metrics = {
|
| 248 |
+
'chrom_uniformity': chrom_uniformity,
|
| 249 |
+
'grid_score': grid_score,
|
| 250 |
+
'ringing': ringing,
|
| 251 |
+
'noise_mean': noise_data['noise_mean'],
|
| 252 |
+
'noise_std': noise_data['noise_std'],
|
| 253 |
+
'grad_uniformity': noise_data['grad_uniformity'],
|
| 254 |
+
'laplacian': noise_data['laplacian'],
|
| 255 |
+
'ela_score': ela_score
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
# Calcul du score
|
| 259 |
+
ai_score, reasons = compute_ai_score(metrics)
|
| 260 |
+
|
| 261 |
+
# Classification avec nuance
|
| 262 |
+
if ai_score >= 80:
|
| 263 |
+
status = "๐จ AI GENERATED (High Confidence)"
|
| 264 |
+
color = "#ff4444"
|
| 265 |
+
elif ai_score >= 60:
|
| 266 |
+
status = "โ ๏ธ LIKELY AI / HEAVILY EDITED"
|
| 267 |
+
color = "#ff8844"
|
| 268 |
+
elif ai_score >= 40:
|
| 269 |
+
status = "๐ SUSPICIOUS โ Manual Review Recommended"
|
| 270 |
+
color = "#ffaa44"
|
| 271 |
+
elif ai_score >= 20:
|
| 272 |
+
status = "โ PROBABLY REAL (Low Confidence)"
|
| 273 |
+
color = "#88cc44"
|
| 274 |
+
else:
|
| 275 |
+
status = "โ
AUTHENTIC IMAGE"
|
| 276 |
+
color = "#44aa44"
|
| 277 |
+
|
| 278 |
+
# Dรฉtection du type
|
| 279 |
+
if grid_score > 10 and ringing > 0.2:
|
| 280 |
+
model_type = "StyleGAN or ProGAN (grid + ringing)"
|
| 281 |
+
elif ringing > 0.25:
|
| 282 |
+
model_type = "Stable Diffusion / Midjourney / DALL-E"
|
| 283 |
+
elif grid_score > 10:
|
| 284 |
+
model_type = "GAN-based (StyleGAN legacy)"
|
| 285 |
+
elif ai_score > 50:
|
| 286 |
+
model_type = "Unknown AI / Heavy processing"
|
| 287 |
else:
|
| 288 |
+
model_type = "Natural/Camera capture"
|
| 289 |
+
|
| 290 |
+
# Visualisations
|
| 291 |
+
fig, axes = plt.subplots(2, 2, figsize=(14, 12))
|
| 292 |
+
fig.patch.set_facecolor('#f0f0f0')
|
| 293 |
+
|
| 294 |
+
# Original
|
| 295 |
+
axes[0,0].imshow(img)
|
| 296 |
+
axes[0,0].set_title('๐ธ Original Image', fontsize=12, fontweight='bold')
|
| 297 |
+
axes[0,0].axis('off')
|
| 298 |
+
|
| 299 |
+
# FFT
|
| 300 |
+
axes[0,1].imshow(fft_vis)
|
| 301 |
+
axes[0,1].set_title(f'๐ฎ Frequency Analysis\nGrid: {grid_score:.1f} | Ringing: {ringing:.2f}',
|
| 302 |
+
fontsize=11, fontweight='bold')
|
| 303 |
+
axes[0,1].axis('off')
|
| 304 |
+
|
| 305 |
+
# ELA
|
| 306 |
+
axes[1,0].imshow(ela_vis)
|
| 307 |
+
axes[1,0].set_title(f'๐ Error Level Analysis\nScore: {ela_score:.2f}',
|
| 308 |
+
fontsize=11, fontweight='bold')
|
| 309 |
+
axes[1,0].axis('off')
|
| 310 |
+
|
| 311 |
+
# Chrominance
|
| 312 |
+
im = axes[1,1].imshow(chrom_vis, cmap='hot')
|
| 313 |
+
axes[1,1].set_title(f'๐ Chrominance Noise\nUniformity: {chrom_uniformity:.2f}',
|
| 314 |
+
fontsize=11, fontweight='bold')
|
| 315 |
+
axes[1,1].axis('off')
|
| 316 |
+
plt.colorbar(im, ax=axes[1,1], fraction=0.046)
|
| 317 |
+
|
| 318 |
+
plt.tight_layout()
|
| 319 |
+
|
| 320 |
+
# Rapport dรฉtaillรฉ
|
| 321 |
+
report = f"""
|
| 322 |
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 323 |
+
โ ๐ก๏ธ MEDIASHIELD PRO โ FORENSIC ANALYSIS v2.0 โ
|
| 324 |
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 325 |
+
|
| 326 |
+
๐ FINAL VERDICT: {status}
|
| 327 |
+
๐ฏ AI PROBABILITY SCORE: {ai_score}/100
|
| 328 |
+
|
| 329 |
+
๐ฌ DETAILED METRICS:
|
| 330 |
+
โโ Grid Pattern Score: {grid_score:>6.2f} {'โ ๏ธ' if grid_score > 8 else 'โ'}
|
| 331 |
+
โโ Circular Artifacts: {ringing:>6.3f} {'โ ๏ธ' if ringing > 0.15 else 'โ'}
|
| 332 |
+
โโ Chrominance Uniformity: {chrom_uniformity:>6.2f} {'โ ๏ธ' if chrom_uniformity < 1.0 else 'โ'}
|
| 333 |
+
โโ Noise Level: {noise_data['noise_mean']:>6.2f} ยฑ{noise_data['noise_std']:.2f}
|
| 334 |
+
โโ Gradient Uniformity: {noise_data['grad_uniformity']:>6.2f}
|
| 335 |
+
โโ Texture (Laplacian): {noise_data['laplacian']:>6.0f}
|
| 336 |
+
โโ ELA Score: {ela_score:>6.2f} {'โ ๏ธ' if ela_score < 1.5 else 'โ'}
|
| 337 |
+
|
| 338 |
+
๐ DETECTED INDICATORS:"""
|
| 339 |
+
|
| 340 |
+
if reasons:
|
| 341 |
+
for reason in reasons:
|
| 342 |
+
report += f"\n {reason}"
|
| 343 |
+
else:
|
| 344 |
+
report += "\n โ
No suspicious patterns detected"
|
| 345 |
+
|
| 346 |
+
report += f"""
|
| 347 |
+
|
| 348 |
+
๐ค ESTIMATED SOURCE: {model_type}
|
| 349 |
+
|
| 350 |
+
๐ก INTERPRETATION:
|
| 351 |
+
"""
|
| 352 |
+
|
| 353 |
+
if ai_score >= 80:
|
| 354 |
+
report += "This image exhibits multiple strong indicators of AI generation."
|
| 355 |
+
elif ai_score >= 60:
|
| 356 |
+
report += "This image likely contains AI-generated elements or heavy manipulation."
|
| 357 |
+
elif ai_score >= 40:
|
| 358 |
+
report += "Some anomalies detected. Recommend expert verification."
|
| 359 |
+
else:
|
| 360 |
+
report += "Image characteristics consistent with natural photography."
|
| 361 |
+
|
| 362 |
+
report += """
|
| 363 |
+
|
| 364 |
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 365 |
+
MediaShield Pro โ Trusted Sound 2026 โ Tunisia
|
| 366 |
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ"""
|
| 367 |
|
| 368 |
return fig, report
|
| 369 |
|
| 370 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 371 |
+
# ๐จ INTERFACE GRADIO
|
| 372 |
+
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
| 373 |
+
|
| 374 |
+
css = """
|
| 375 |
+
.output_text { font-family: 'Courier New', monospace; white-space: pre-line; }
|
| 376 |
+
"""
|
| 377 |
+
|
| 378 |
+
with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
| 379 |
+
gr.Markdown("""
|
| 380 |
+
# ๐ก๏ธ MediaShield PRO โ AI Image Detection v2.0
|
| 381 |
+
### Dรฉtection avancรฉe de Deepfakes, Stable Diffusion, Midjourney et GANs
|
| 382 |
+
""")
|
| 383 |
+
|
| 384 |
with gr.Row():
|
| 385 |
+
with gr.Column(scale=1):
|
| 386 |
+
input_img = gr.Image(label="๐ค Upload Image", type="numpy")
|
| 387 |
+
analyze_btn = gr.Button("๐ START FORENSIC ANALYSIS", variant="primary", size="lg")
|
| 388 |
+
|
| 389 |
+
gr.Markdown("""
|
| 390 |
+
**โน๏ธ Guide d'interprรฉtation:**
|
| 391 |
+
- ๐จ **80-100**: Image clairement gรฉnรฉrรฉe par IA
|
| 392 |
+
- โ ๏ธ **60-79**: Probablement IA ou trรจs retouchรฉe
|
| 393 |
+
- ๐ **40-59**: Suspecte โ vรฉrification manuelle recommandรฉe
|
| 394 |
+
- โ
**0-39**: Image probablement authentique
|
| 395 |
+
""")
|
| 396 |
+
|
| 397 |
+
with gr.Column(scale=2):
|
| 398 |
+
output_plot = gr.Plot(label="๐ฌ Forensic Visualizations")
|
| 399 |
+
output_text = gr.Textbox(label="๐ Analysis Report", lines=25, elem_classes=["output_text"])
|
| 400 |
+
|
| 401 |
+
analyze_btn.click(
|
| 402 |
+
fn=analyze_image,
|
| 403 |
+
inputs=input_img,
|
| 404 |
+
outputs=[output_plot, output_text]
|
| 405 |
+
)
|
| 406 |
|
| 407 |
if __name__ == "__main__":
|
| 408 |
demo.launch()
|