stardetect

Crates.iostardetect
lib.rsstardetect
version0.3.0
sourcesrc
created_at2024-03-24 07:23:09.288987
updated_at2024-04-16 07:17:15.556237
descriptionDetect star positions and sizes in an image
homepagehttps://github.com/anshap1719/stardetect
repositoryhttps://github.com/anshap1719/stardetect
max_upload_size
id1184168
size64,026
Anshul Sanghi (anshap1719)

documentation

README

Stardetect – A library to efficiently detect stars positions and sizes in any image

This project provides an implementation of the star detection technique used in astronomical plate solving algorithms. The implementation uses À Trous Wavelet decomposition under the hood to optimize the image before running star detection algorithms.

Why

I'm trying to build a suite of tools in rust that facilitate image processing, primarily deep sky images and data. Star detection is particularly helpful in plate-solving astronomical images which allows various image processing techniques to be implemented, such as star correction, noise reduction, etc.

Usage

fn detect_stars() {
    let star_detect = StarDetect::try_from("./sample.jpg").unwrap();
    let star_centers = star_detect.compute_star_centers();
}

Installation

To use this library in your Rust project, add the following to your Cargo.toml file:

[dependencies]
stardetect = "0.1.0"
Commit count: 19

cargo fmt