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
For each tile three requests are coming. This makes the volume editor three times slower.
The text was updated successfully, but these errors were encountered:
According to @thorbenk this should reproduce it:
from volumina.api import Viewer from PyQt4.QtGui import QApplication from PyQt4.QtCore import QTimer app = QApplication([]) v = Viewer() import numpy a = numpy.zeros((50,50,50), dtype=numpy.uint8) v.addGrayscaleLayer(a, name="raw") v.show() def change(): v.dataShape = (1, 100, 200, 300, 1) #QTimer.singleShot(200, change) app.exec_()
Use above code with:
$ cat > .voluminarc [pixelpipeline] verbose: true
Sorry, something went wrong.
thorbenk
No branches or pull requests
For each tile three requests are coming. This makes the volume editor three times slower.
The text was updated successfully, but these errors were encountered: