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
When attempting to use/interact with ij.op().create() an overloading error is thrown. There is an ambiguity issue (bug?) where JPype gets confused between PTService.create() and what we want ij.op().create().
When attempting to use/interact with
ij.op().create()
an overloading error is thrown. There is an ambiguity issue (bug?) whereJPype
gets confused betweenPTService.create()
and what we wantij.op().create()
.For now the workaround is to be explicit and import the create namespace manually.
Here's an example of how code should run (but doesn't because of this ambiguity issue) working with this workaround.
Should work:
Workaround:
Note instead of using
ij.op().create()
, useij.op().namespace()
and pass it the CreateNamespace.The text was updated successfully, but these errors were encountered: