From a12889488a172fd1a2672bf95ee1548730156b7f Mon Sep 17 00:00:00 2001 From: Ricardo <24703825+RickyM7@users.noreply.github.com> Date: Sun, 29 Sep 2024 01:13:18 -0300 Subject: [PATCH] Caminho absoluto da imagem --- projetos/projetos-de-ia/projeto-de-ag/ag_imagem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projetos/projetos-de-ia/projeto-de-ag/ag_imagem.py b/projetos/projetos-de-ia/projeto-de-ag/ag_imagem.py index ddfc51f..30f99a6 100644 --- a/projetos/projetos-de-ia/projeto-de-ag/ag_imagem.py +++ b/projetos/projetos-de-ia/projeto-de-ag/ag_imagem.py @@ -12,7 +12,7 @@ mse_dez_ger = deque(maxlen=5) #mse das ultimas 5 gerações # Carrega a imagem original -img_original = Image.open('test2.jpg').convert('L') +img_original = Image.open('./test2.jpg').convert('L') # img_original = img_original.resize((64, 64)) matriz_img_original = np.array(img_original) # converte para uma matriz @@ -126,4 +126,4 @@ def mutacao(cromossomo, taxa_mutacao): ax[1].imshow(melhor_img, cmap='gray') ax[1].set_title(f"Imagem Final (MSE: {melhor_fitness:.2f})") plt.ioff() # Desliga o modo interativo -plt.show() \ No newline at end of file +plt.show()