Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion S3segmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def S3AreaSegmenter(nucleiPM, images, TMAmask, threshold,fileprefix,outputPath):
threshold = threshold_otsu(image_gauss)
mask=resize(image_gauss>threshold,(images.shape[1],images.shape[2]),order = 0)*TMAmask
area.append(np.sum(np.sum(mask)))
os.mk
np.savetxt(outputPath + os.path.sep + fileprefix + '_area.csv',(np.transpose(np.asarray(area))),fmt='%10.5f')
return TMAmask

Expand Down
Loading