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()