Upload 3 files
Browse files- app.py +15 -7
- livro.py +98 -42
- requirements.txt +1 -0
app.py
CHANGED
@@ -8,37 +8,45 @@ with gr.Blocks() as demo:
|
|
8 |
mascara = gr.ImageEditor(label="Marcar áreas para preservar (opcional)")
|
9 |
with gr.Row():
|
10 |
idade = gr.Slider(minimum=4, maximum=12, step=1, value=6, label="Idade da criança (ajusta número de pontos)")
|
|
|
11 |
contraste_alerta = gr.Textbox(label="Aviso de Contraste", interactive=False)
|
12 |
with gr.Row():
|
13 |
imagem_resultado = gr.Image(label="Prévia com Pontos Numerados")
|
|
|
14 |
with gr.Row():
|
15 |
gerar_btn = gr.Button("Gerar Pontos")
|
16 |
salvar_btn = gr.Button("Salvar como PDF")
|
|
|
17 |
capa_btn = gr.Button("Gerar Preview da Capa")
|
18 |
-
saida_pdf = gr.File(label="Download
|
|
|
19 |
saida_capa = gr.Image(label="Preview da Capa")
|
20 |
|
21 |
resultado = {}
|
22 |
|
23 |
-
def gerar(imagem_array, mask_array, idade):
|
24 |
global resultado
|
25 |
if imagem_array is None:
|
26 |
-
return "⚠️ Nenhuma imagem enviada.", None
|
27 |
aviso = verificar_contraste(imagem_array)
|
28 |
try:
|
29 |
-
resultado = processar_e_mostrar(imagem_array, mask_array, idade)
|
30 |
-
return aviso, resultado["preview"]
|
31 |
except Exception as e:
|
32 |
-
return f"Erro: {str(e)}", None
|
33 |
|
34 |
def salvar_pdf():
|
35 |
return resultado.get("pdf") if resultado else None
|
36 |
|
|
|
|
|
|
|
37 |
def gerar_capa():
|
38 |
return gerar_preview_kdp()
|
39 |
|
40 |
-
gerar_btn.click(gerar, inputs=[imagem_input, mascara, idade], outputs=[contraste_alerta, imagem_resultado])
|
41 |
salvar_btn.click(salvar_pdf, outputs=saida_pdf)
|
|
|
42 |
capa_btn.click(gerar_capa, outputs=saida_capa)
|
43 |
|
44 |
demo.launch()
|
|
|
8 |
mascara = gr.ImageEditor(label="Marcar áreas para preservar (opcional)")
|
9 |
with gr.Row():
|
10 |
idade = gr.Slider(minimum=4, maximum=12, step=1, value=6, label="Idade da criança (ajusta número de pontos)")
|
11 |
+
posicao = gr.Radio(["Topo da página", "Centro da página", "Base da página"], value="Centro da página", label="Posicionamento do desenho")
|
12 |
contraste_alerta = gr.Textbox(label="Aviso de Contraste", interactive=False)
|
13 |
with gr.Row():
|
14 |
imagem_resultado = gr.Image(label="Prévia com Pontos Numerados")
|
15 |
+
sobreposicao = gr.Image(label="Preview com Sobreposição")
|
16 |
with gr.Row():
|
17 |
gerar_btn = gr.Button("Gerar Pontos")
|
18 |
salvar_btn = gr.Button("Salvar como PDF")
|
19 |
+
salvar_png = gr.Button("Salvar como PNG")
|
20 |
capa_btn = gr.Button("Gerar Preview da Capa")
|
21 |
+
saida_pdf = gr.File(label="Download PDF")
|
22 |
+
saida_png = gr.File(label="Download PNG")
|
23 |
saida_capa = gr.Image(label="Preview da Capa")
|
24 |
|
25 |
resultado = {}
|
26 |
|
27 |
+
def gerar(imagem_array, mask_array, idade, posicao):
|
28 |
global resultado
|
29 |
if imagem_array is None:
|
30 |
+
return "⚠️ Nenhuma imagem enviada.", None, None
|
31 |
aviso = verificar_contraste(imagem_array)
|
32 |
try:
|
33 |
+
resultado = processar_e_mostrar(imagem_array, mask_array, idade, posicao)
|
34 |
+
return aviso, resultado["preview"], resultado["overlay"]
|
35 |
except Exception as e:
|
36 |
+
return f"Erro: {str(e)}", None, None
|
37 |
|
38 |
def salvar_pdf():
|
39 |
return resultado.get("pdf") if resultado else None
|
40 |
|
41 |
+
def salvar_imagem():
|
42 |
+
return resultado.get("png") if resultado else None
|
43 |
+
|
44 |
def gerar_capa():
|
45 |
return gerar_preview_kdp()
|
46 |
|
47 |
+
gerar_btn.click(gerar, inputs=[imagem_input, mascara, idade, posicao], outputs=[contraste_alerta, imagem_resultado, sobreposicao])
|
48 |
salvar_btn.click(salvar_pdf, outputs=saida_pdf)
|
49 |
+
salvar_png.click(salvar_imagem, outputs=saida_png)
|
50 |
capa_btn.click(gerar_capa, outputs=saida_capa)
|
51 |
|
52 |
demo.launch()
|
livro.py
CHANGED
@@ -3,87 +3,129 @@ import cv2
|
|
3 |
import numpy as np
|
4 |
from reportlab.pdfgen import canvas
|
5 |
from reportlab.lib.units import inch
|
6 |
-
import tempfile
|
7 |
from PIL import Image, ImageDraw, ImageFont
|
|
|
|
|
8 |
|
9 |
PAGE_WIDTH = 8.67 * inch
|
10 |
PAGE_HEIGHT = 11.5 * inch
|
11 |
MARGIN = 0.5 * inch
|
12 |
|
13 |
def verificar_contraste(imagem_array):
|
|
|
14 |
gray = cv2.cvtColor(imagem_array, cv2.COLOR_BGR2GRAY)
|
15 |
contrast = gray.std()
|
16 |
-
if contrast < 30
|
17 |
-
return "⚠️ Baixo contraste detectado! Use uma imagem com contorno escuro e fundo branco puro."
|
18 |
-
return "✅ Contraste adequado."
|
19 |
|
20 |
-
def detectar_pontos(imagem_array, mascara_array
|
|
|
21 |
gray = cv2.cvtColor(imagem_array, cv2.COLOR_BGR2GRAY)
|
22 |
_, thresh = cv2.threshold(gray, 200, 255, cv2.THRESH_BINARY_INV)
|
23 |
|
|
|
24 |
if mascara_array is not None and isinstance(mascara_array, np.ndarray):
|
25 |
try:
|
26 |
-
|
27 |
-
_, mask_thresh = cv2.threshold(
|
28 |
-
thresh =
|
29 |
except Exception as e:
|
30 |
print("Erro ao processar máscara:", e)
|
31 |
|
|
|
32 |
contours, _ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)
|
33 |
if not contours:
|
34 |
-
return []
|
35 |
|
36 |
main_contour = max(contours, key=cv2.contourArea)
|
37 |
-
max_points = min(30 + (idade - 4) * 10, 150)
|
38 |
-
approx = [tuple(pt[0]) for pt in main_contour[::max(1, len(main_contour)//max_points)]]
|
39 |
-
return sorted(approx, key=lambda p: (p[1], p[0]))
|
40 |
-
|
41 |
-
def gerar_preview_com_pontos(pontos):
|
42 |
-
largura = 600
|
43 |
-
altura = 800
|
44 |
-
margem = 50
|
45 |
-
|
46 |
-
preview = np.ones((altura, largura, 3), dtype=np.uint8) * 255
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
if not pontos:
|
49 |
-
return
|
50 |
|
|
|
51 |
x_coords, y_coords = zip(*pontos)
|
52 |
min_x, max_x = min(x_coords), max(x_coords)
|
53 |
min_y, max_y = min(y_coords), max(y_coords)
|
54 |
-
|
55 |
escala_x = (largura - 2 * margem) / (max_x - min_x + 1e-5)
|
56 |
escala_y = (altura - 2 * margem) / (max_y - min_y + 1e-5)
|
57 |
escala = min(escala_x, escala_y)
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
pontos_normalizados = [(
|
60 |
int((x - min_x) * escala + margem),
|
61 |
-
int((y - min_y) * escala +
|
62 |
) for x, y in pontos]
|
|
|
63 |
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
-
|
69 |
-
cv2.imwrite(preview_path, preview)
|
70 |
-
return preview_path
|
71 |
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
c.circle(x, PAGE_HEIGHT - y, 2, fill=1)
|
77 |
c.setFont("Helvetica", 8)
|
78 |
c.drawString(x + 3, PAGE_HEIGHT - y + 3, str(i + 1))
|
79 |
c.save()
|
80 |
-
return
|
81 |
-
|
82 |
-
def processar_e_mostrar(imagem_array, mascara_array, idade):
|
83 |
-
pontos = detectar_pontos(imagem_array, mascara_array, idade)
|
84 |
-
preview = gerar_preview_com_pontos(pontos)
|
85 |
-
pdf = gerar_pdf(pontos)
|
86 |
-
return {"preview": preview, "pdf": pdf}
|
87 |
|
88 |
def gerar_preview_kdp():
|
89 |
img = Image.new("RGB", (1500, 1000), color=(250, 240, 210))
|
@@ -94,6 +136,20 @@ def gerar_preview_kdp():
|
|
94 |
draw.text((580, 160), "For Kids Ages 4 to 12", fill="black", font=font)
|
95 |
draw.ellipse((1100, 700, 1300, 900), outline="gray", width=3)
|
96 |
draw.text((1120, 780), "Your Art Here", fill="gray", font=font)
|
97 |
-
|
98 |
-
img.save(
|
99 |
-
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
import numpy as np
|
4 |
from reportlab.pdfgen import canvas
|
5 |
from reportlab.lib.units import inch
|
|
|
6 |
from PIL import Image, ImageDraw, ImageFont
|
7 |
+
from sklearn.neighbors import NearestNeighbors
|
8 |
+
import tempfile
|
9 |
|
10 |
PAGE_WIDTH = 8.67 * inch
|
11 |
PAGE_HEIGHT = 11.5 * inch
|
12 |
MARGIN = 0.5 * inch
|
13 |
|
14 |
def verificar_contraste(imagem_array):
|
15 |
+
# Converte para escala de cinza e calcula o desvio padrão para avaliar contraste
|
16 |
gray = cv2.cvtColor(imagem_array, cv2.COLOR_BGR2GRAY)
|
17 |
contrast = gray.std()
|
18 |
+
return "⚠️ Baixo contraste detectado!" if contrast < 30 else "✅ Contraste adequado."
|
|
|
|
|
19 |
|
20 |
+
def detectar_pontos(imagem_array, mascara_array, idade, distancia_maxima=50):
|
21 |
+
# Preprocessamento da imagem
|
22 |
gray = cv2.cvtColor(imagem_array, cv2.COLOR_BGR2GRAY)
|
23 |
_, thresh = cv2.threshold(gray, 200, 255, cv2.THRESH_BINARY_INV)
|
24 |
|
25 |
+
# Aplica a máscara para preservar regiões (remover pontos dessas áreas)
|
26 |
if mascara_array is not None and isinstance(mascara_array, np.ndarray):
|
27 |
try:
|
28 |
+
mask_gray = cv2.cvtColor(mascara_array, cv2.COLOR_BGR2GRAY)
|
29 |
+
_, mask_thresh = cv2.threshold(mask_gray, 10, 255, cv2.THRESH_BINARY)
|
30 |
+
thresh[mask_thresh > 0] = 0
|
31 |
except Exception as e:
|
32 |
print("Erro ao processar máscara:", e)
|
33 |
|
34 |
+
# Encontra contornos
|
35 |
contours, _ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)
|
36 |
if not contours:
|
37 |
+
return [], None
|
38 |
|
39 |
main_contour = max(contours, key=cv2.contourArea)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
# Reduz a quantidade de pontos mantendo a forma
|
42 |
+
epsilon = 1.0 # Quanto maior, mais simplificado
|
43 |
+
simplified = cv2.approxPolyDP(main_contour, epsilon, closed=False)
|
44 |
+
|
45 |
+
# Ajusta número com base na idade da criança
|
46 |
+
max_pontos = min(30 + (idade - 4) * 10, 100)
|
47 |
+
step = max(1, len(simplified) // max_pontos)
|
48 |
+
pontos = [tuple(pt[0]) for pt in simplified[::step]]
|
49 |
+
|
50 |
+
# Organiza sequencialmente para evitar pontos muito distantes
|
51 |
+
if len(pontos) > 2:
|
52 |
+
ordenados = [pontos[0]]
|
53 |
+
restantes = pontos[1:]
|
54 |
+
while restantes:
|
55 |
+
ultimo = ordenados[-1]
|
56 |
+
prox = min(restantes, key=lambda p: np.hypot(p[0]-ultimo[0], p[1]-ultimo[1]))
|
57 |
+
if np.hypot(p[0]-ultimo[0], p[1]-ultimo[1]) > distancia_maxima:
|
58 |
+
break
|
59 |
+
ordenados.append(prox)
|
60 |
+
restantes.remove(prox)
|
61 |
+
pontos = ordenados
|
62 |
+
return pontos, thresh
|
63 |
+
|
64 |
+
def normalizar_para_preview(pontos, largura=600, altura=800, margem=50, posicao="Centro da página"):
|
65 |
if not pontos:
|
66 |
+
return [], 0
|
67 |
|
68 |
+
# Escala os pontos para caber no canvas
|
69 |
x_coords, y_coords = zip(*pontos)
|
70 |
min_x, max_x = min(x_coords), max(x_coords)
|
71 |
min_y, max_y = min(y_coords), max(y_coords)
|
|
|
72 |
escala_x = (largura - 2 * margem) / (max_x - min_x + 1e-5)
|
73 |
escala_y = (altura - 2 * margem) / (max_y - min_y + 1e-5)
|
74 |
escala = min(escala_x, escala_y)
|
75 |
|
76 |
+
altura_desenho = (max_y - min_y) * escala
|
77 |
+
if posicao == "Topo da página":
|
78 |
+
offset_y = margem
|
79 |
+
elif posicao == "Base da página":
|
80 |
+
offset_y = altura - margem - altura_desenho
|
81 |
+
else: # Centro
|
82 |
+
offset_y = (altura - altura_desenho) // 2
|
83 |
+
|
84 |
pontos_normalizados = [(
|
85 |
int((x - min_x) * escala + margem),
|
86 |
+
int((y - min_y) * escala + offset_y)
|
87 |
) for x, y in pontos]
|
88 |
+
return pontos_normalizados, escala
|
89 |
|
90 |
+
def gerar_preview_com_pontos(pontos, posicao):
|
91 |
+
largura, altura = 600, 800
|
92 |
+
margem = 50
|
93 |
+
img = np.ones((altura, largura, 3), dtype=np.uint8) * 255
|
94 |
+
pontos_norm, _ = normalizar_para_preview(pontos, largura, altura, margem, posicao)
|
95 |
+
|
96 |
+
for i, (x, y) in enumerate(pontos_norm):
|
97 |
+
cv2.circle(img, (x, y), 4, (0, 0, 0), -1)
|
98 |
+
cv2.putText(img, str(i+1), (x + 6, y - 6), cv2.FONT_HERSHEY_SIMPLEX, 0.4, (0, 0, 0), 1)
|
99 |
+
|
100 |
+
path = tempfile.NamedTemporaryFile(delete=False, suffix=".png").name
|
101 |
+
cv2.imwrite(path, img)
|
102 |
+
return path, img, pontos_norm
|
103 |
+
|
104 |
+
def gerar_overlay(original, pontos_norm):
|
105 |
+
overlay = original.copy()
|
106 |
+
h, w = overlay.shape[:2]
|
107 |
+
resize = cv2.resize(overlay, (w, h))
|
108 |
|
109 |
+
transparente = cv2.addWeighted(resize, 0.5, np.ones_like(resize) * 255, 0.5, 0)
|
|
|
|
|
110 |
|
111 |
+
for i, (x, y) in enumerate(pontos_norm):
|
112 |
+
if x < w and y < h:
|
113 |
+
cv2.circle(transparente, (x, y), 4, (0, 0, 0), -1)
|
114 |
+
cv2.putText(transparente, str(i+1), (x + 6, y - 6), cv2.FONT_HERSHEY_SIMPLEX, 0.4, (0, 0, 0), 1)
|
115 |
+
|
116 |
+
path = tempfile.NamedTemporaryFile(delete=False, suffix=".png").name
|
117 |
+
cv2.imwrite(path, transparente)
|
118 |
+
return path
|
119 |
+
|
120 |
+
def gerar_pdf(pontos_norm):
|
121 |
+
pdf_path = tempfile.NamedTemporaryFile(delete=False, suffix=".pdf").name
|
122 |
+
c = canvas.Canvas(pdf_path, pagesize=(PAGE_WIDTH, PAGE_HEIGHT))
|
123 |
+
for i, (x, y) in enumerate(pontos_norm):
|
124 |
c.circle(x, PAGE_HEIGHT - y, 2, fill=1)
|
125 |
c.setFont("Helvetica", 8)
|
126 |
c.drawString(x + 3, PAGE_HEIGHT - y + 3, str(i + 1))
|
127 |
c.save()
|
128 |
+
return pdf_path
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
def gerar_preview_kdp():
|
131 |
img = Image.new("RGB", (1500, 1000), color=(250, 240, 210))
|
|
|
136 |
draw.text((580, 160), "For Kids Ages 4 to 12", fill="black", font=font)
|
137 |
draw.ellipse((1100, 700, 1300, 900), outline="gray", width=3)
|
138 |
draw.text((1120, 780), "Your Art Here", fill="gray", font=font)
|
139 |
+
path = tempfile.NamedTemporaryFile(delete=False, suffix=".png").name
|
140 |
+
img.save(path)
|
141 |
+
return path
|
142 |
+
|
143 |
+
def processar_e_mostrar(imagem_array, mascara_array, idade, posicao):
|
144 |
+
pontos, original_masked = detectar_pontos(imagem_array, mascara_array, idade)
|
145 |
+
preview_path, preview_img, pontos_norm = gerar_preview_com_pontos(pontos, posicao)
|
146 |
+
overlay_path = gerar_overlay(cv2.resize(imagem_array, (600, 800)), pontos_norm)
|
147 |
+
pdf_path = gerar_pdf(pontos_norm)
|
148 |
+
png_path = tempfile.NamedTemporaryFile(delete=False, suffix=".png").name
|
149 |
+
cv2.imwrite(png_path, preview_img)
|
150 |
+
return {
|
151 |
+
"preview": preview_path,
|
152 |
+
"overlay": overlay_path,
|
153 |
+
"pdf": pdf_path,
|
154 |
+
"png": png_path
|
155 |
+
}
|
requirements.txt
CHANGED
@@ -3,3 +3,4 @@ opencv-python
|
|
3 |
numpy
|
4 |
reportlab
|
5 |
pillow
|
|
|
|
3 |
numpy
|
4 |
reportlab
|
5 |
pillow
|
6 |
+
scikit-learn
|