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
The ExportV.export_() call in blockwisecc_py.cxx, at line 106, implicitly registers a to-python converter for vigra::TinyVector, which is probably already registered in vigra. Should be replaced by an explicit from-python converter.
Warning:
$ python -c 'import blockedarray'
/home/markus/Coding/hci/blockedarray/blockedarray/__init__.py:1: RuntimeWarning: to-Python converter for vigra::TinyVector<int, 2> already registered; second conversion method ignored.
from _blockedarray import *
/home/markus/Coding/hci/blockedarray/blockedarray/__init__.py:1: RuntimeWarning: to-Python converter for vigra::TinyVector<int, 3> already registered; second conversion method ignored.
from _blockedarray import *
The text was updated successfully, but these errors were encountered:
Seems like the converters are not necessary, vigra registers converters for vigra::TinyVector<N,MultiArrayIndex> to python tuples by default. But boost still complains about missing converters when properties are exposed, methods work fine.
The
ExportV.export_()
call inblockwisecc_py.cxx
, at line 106, implicitly registers a to-python converter forvigra::TinyVector
, which is probably already registered in vigra. Should be replaced by an explicit from-python converter.Warning:
The text was updated successfully, but these errors were encountered: