Skip to content

Commit

Permalink
resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
emiglietta committed Nov 26, 2024
1 parent b8a3f3a commit b535787
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions active_plugins/measurerwcperobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,18 +321,12 @@ def run_image_pair_objects(

fi_thresh_obj = obj_pixels_img1[combined_thresh] #array of pixel values above threshold for the object
si_thresh_obj = obj_pixels_img2[combined_thresh]

<<<<<<< Updated upstream
tot_fi_thr =
tot_si_thr =
=======

tot_fi_thr_perObj = scipy.ndimage.sum(
obj_pixels_img1[obj_pixels_img1 >= tff[label - 1]]
)
tot_si_thr_perObj = scipy.ndimage.sum(
obj_pixels_img2[obj_pixels_img2 >= tff[label - 1]]
)
>>>>>>> Stashed changes

Rank1 = numpy.lexsort([obj_pixels_img1]) #array with a value assigned to each position according to ascending rank (0 is the rank of the lowest value)
Rank2 = numpy.lexsort([obj_pixels_img2])
Expand Down

0 comments on commit b535787

Please sign in to comment.