This commit is contained in:
gac-S_Changer
2017-06-27 15:34:13 +02:00
parent 6211e795b8
commit 912a3ff63c
12 changed files with 1122 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from ijutils import *
import java.awt.Color as Color
ip = load_image(img.getImage())
grayscale(ip)
#ip=binning(ip,2)
gaussian_blur(ip)
#bandpass_filter(ip,20, 100)
auto_threshold(ip)
#Particle Analysis
(results,output_img)=analyse_particles(ip, 500,2000, print_table=True)
output_img.show()
ip.show()