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
Hi, I noticed that when adding the spot ROIs to the Roi Manager, their Z-position is not set explicitly, which can lead to this information getting lost in some cases, see related image.sc forum thread: https://forum.image.sc/t/rois-added-to-roi-manager-by-macro-do-not-maintain-all-properties/37533/5
Example issue: Run RS fish including"add ROIs to RoiManager", then save the image using Bio-Formats as ome.tif including the ROIs.
This issue can be solved by setting the spots z positions explicitly by adding a line in RS-FISH/src/main/java/gui/Radial_Symmetry.java after line 344
RS-FISH/src/main/java/gui/Radial_Symmetry.java
Line 344 in 9c3521e
p.setPosition( 1 + (int)Math.round( spot.getDoublePosition( 2 ) ) );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I noticed that when adding the spot ROIs to the Roi Manager, their Z-position is not set explicitly, which can lead to this information getting lost in some cases, see related image.sc forum thread: https://forum.image.sc/t/rois-added-to-roi-manager-by-macro-do-not-maintain-all-properties/37533/5
Example issue: Run RS fish including"add ROIs to RoiManager", then save the image using Bio-Formats as ome.tif including the ROIs.
This issue can be solved by setting the spots z positions explicitly by adding a line in
RS-FISH/src/main/java/gui/Radial_Symmetry.java
after line 344RS-FISH/src/main/java/gui/Radial_Symmetry.java
Line 344 in 9c3521e
e.g.:
p.setPosition( 1 + (int)Math.round( spot.getDoublePosition( 2 ) ) );
The text was updated successfully, but these errors were encountered: