You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was using BigStitcher from pyimagej on Windows and needed to pass in paths. But, BigStitcher would choke on the paths claiming it can't find files there.
I traced down the issue to pyimagej automatically replacing backslashes with a forward slash. When I removed this, BigStitcher finally worked.
Should this replacement be optional, perhaps guarded behind a switch, like ij1_style!? I ended up replicating the format code and passing in args as a string, without this replacement.
The text was updated successfully, but these errors were encountered:
I was using
BigStitcher
frompyimagej
on Windows and needed to pass in paths. But,BigStitcher
would choke on the paths claiming it can't find files there.I traced down the issue to
pyimagej
automatically replacing backslashes with a forward slash. When I removed this, BigStitcher finally worked.pyimagej/src/imagej/__init__.py
Line 712 in 17fdca8
Should this replacement be optional, perhaps guarded behind a switch, like
ij1_style
!? I ended up replicating the format code and passing inargs
as a string, without this replacement.The text was updated successfully, but these errors were encountered: