[package] name = "hough_circle_transform_for_cme" description = "Search for circles in the image using houghs transform and output either the parameters of the circles or an image with the circles drawn. Meant to be used for TIRF-SIM microscoped CME cell processes." version = "0.1.3" authors = ["Martin Kunz "] edition = "2018" readme = "README.md" repository = "https://gitlab.com/kunzaatko/circle-hough-transform" license = "MIT OR Apache-2.0" exclude = [ "images/*" ] [dependencies] image = "0.23.10" structopt = "0.3.18" ndarray-stats = "0.3.0" [dependencies.ndarray] version = "0.13.1" features = ["rayon"] [dependencies.ndarray-npy] # for serialization into NumPy arrays version = "0.6.0" [[bin]] name = "houghse" path = "src/main.rs" test = true