Add a flip parameter on ProjectImportImagesCommand#2075
Add a flip parameter on ProjectImportImagesCommand#2075petebankhead merged 4 commits intoqupath:mainfrom
Conversation
|
Thanks, I'll check this out in more detail tomorrow. Two quick thoughts:
Currently we have To help answer, it would be worth checking performance with a large, multiplexed image, e.g., LuCa-7color_Scan1.qptiff or Patient_1.ome.tiff; you could benchmark tile reading using |
|
See also how command line support is provided for rotation with |
|
On LuCa-7color_Scan1.qptiff or Patient_1.ome.tiff, the benchmark script results are:
server = new RotatedImageServer(server, RotatedImageServer.Rotation.ROTATE_180)
var transform = new AffineTransform()
transform.rotate(Math.PI, server.getWidth() / 2, server.getHeight() / 2)
server = new TransformedServerBuilder(server)
.transform(transform)
.build()So yes it might be better to create a new |
Implements #2028: