We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eventually we need to accept the objects' region properties in row-column coordinates, as opposed to xy.
skimage.measure regionprops function will stop using xy coordinates and use row-column instead. STObject.py uses it for shape properties.
We could specify regionprops(..., coordinates='xy') for now to avoid the warning, but this will break.
See https://scikit-image.org/docs/0.14.x/release_notes_and_installation.html#deprecations for details on how to avoid this message. warn(XY_TO_RC_DEPRECATION_MESSAGE)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Eventually we need to accept the objects' region properties in row-column coordinates, as opposed to xy.
skimage.measure regionprops function will stop using xy coordinates and use row-column instead.
STObject.py uses it for shape properties.
We could specify regionprops(..., coordinates='xy') for now to avoid the warning, but this will break.
See https://scikit-image.org/docs/0.14.x/release_notes_and_installation.html#deprecations for details on how to avoid this message.
warn(XY_TO_RC_DEPRECATION_MESSAGE)
The text was updated successfully, but these errors were encountered: