Skip to content

Commit

Permalink
Fix #144
Browse files Browse the repository at this point in the history
  • Loading branch information
tferr committed Jan 26, 2023
1 parent a2cc1c4 commit 89d3861
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,8 @@ private void assembleShells() {
final boolean east = arcs && sProperty.contains(HEMI_EAST);

for (final ProfileEntry entry : profile.entries()) {
final double radiusX = cal.getRawX(entry.radius);
final double radiusY = cal.getRawY(entry.radius);

final double radiusX = entry.radius / cal.pixelWidth;
final double radiusY = entry.radius / cal.pixelHeight;
Roi shell;
if (arcs) {
final Arc2D.Double arc = new Arc2D.Double();
Expand Down

1 comment on commit 89d3861

@imagesc-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit has been mentioned on Image.sc Forum. There might be relevant details there:

https://forum.image.sc/t/sholl-analysis-first-time/76191/8

Please sign in to comment.