Skip to content

Commit

Permalink
Rename method createSpotsFromLabels to createSpotsFromLabelImage
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhahmann committed Oct 10, 2023
1 parent edd31f3 commit 521dbec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected ImportSpotsFromLabelImageController(
* Converts label images to (spot) ellipsoids.<p>
* The method runs twice through each image (i.e. each frame) read. Once to determine maximum/minimum values for array initialization, and once to do summation for covariance & mean.
*/
public void createSpotsFromLabels()
public void createSpotsFromLabelImage()
{
int numTimepoints = frames.size();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void run()
{
ImportSpotsFromLabelImageController controller =
new ImportSpotsFromLabelImageController( appModel, context, labelChannelIndex, sigma );
controller.createSpotsFromLabels();
controller.createSpotsFromLabelImage();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void testGetEllipsoidFromImage()
ImportSpotsFromLabelImageController controller =
new ImportSpotsFromLabelImageController( model, timePoints, img, context, voxelDimensions, 1 );

controller.createSpotsFromLabels();
controller.createSpotsFromLabelImage();

Iterator< Spot > iter = model.getGraph().vertices().iterator();
Spot spot = iter.next();
Expand Down

0 comments on commit 521dbec

Please sign in to comment.