Je travaille sur le projet python avec opencv sur Ubuntu OS
import numpy as np
import cv2
img = cv2.imread("LillyBellea.png", 1)
img = cv2.imwrite("LillyBellea.jpeg", img)
cv2.imshow("original", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
quand j'exécute ce programme, je reçois une erreur
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
quelqu'un peut-il aider ici, j'ai suivi ce réponse mais ça ne fonctionne pas pour moi
Cela a résolu le problème pour moi:
export GIO_EXTRA_MODULES=/usr/lib/x86_64-linux-gnu/gio/modules/
Voir: https://github.com/conda-forge/glib-feedstock/issues/19 pour plus d'informations.
Je voudrais ajouter (car je ne peux pas encore commenter), que pour résoudre réellement ce problème, vous devez ajouter à votre bashrc local, sinon, chaque fois que vous ouvrez un terminal, l'exportation a disparu.