Skip to content

Cannot load image on Windows machine if there are non-ASCII characters in file path #8

Open
@JeffreyScheck

Description

@JeffreyScheck

If there is a non-ASCII character in the file path then the library has issues loading images from file properly.

Potential fix is to change line 766 in machinevisiontoolbox/base/imageio.py from
image = cv.imread(path.as_posix(), -1)
to
image = cv.imdecode(np.fromfile(path.as_posix(), dtype=np.uint8),cv.IMREAD_UNCHANGED)

I don't know if this causes other issues, but it did resolve the primary problem on a Windows machine.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions