I tried to open this image using this path:
path = "./Bee Privée/chat_section_1.png"
But imread returns None So after some debugging it works if I rename the folder leaving the é char:
path = "./Bee Prive/chat_section_1.png"
What am I doing wrong? I have tried also using Pillow and it worked with that path, does imread not accept special chars in the path?