freqshow 0.3.4

A simple tool to visualize the frequency spectrum of an image using Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "freqshow"
version = "0.3.4"
authors = ["Sam Beskur <sam.beskur@gmail.com>"]
build = false
exclude = [
    "target",
    "notebooks",
    "data",
    "output",
    "benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple tool to visualize the frequency spectrum of an image using Rust."
homepage = "https://github.com/sjbeskur/freqshow/"
documentation = "https://docs.rs/freqshow"
readme = "README.md"
keywords = [
    "fft",
    "cli",
    "image-processing",
    "visualization",
    "rust",
]
categories = [
    "computer-vision",
    "visualization",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/sjbeskur/freqshow/"

[lib]
name = "freqshow"
path = "src/lib.rs"

[[example]]
name = "denoise"
path = "examples/denoise.rs"

[[example]]
name = "edge_detect"
path = "examples/edge_detect.rs"

[[example]]
name = "freq_out"
path = "examples/freq_out.rs"

[[example]]
name = "sharpen"
path = "examples/sharpen.rs"

[dependencies.image]
version = "0.25.9"

[dependencies.rustfft]
version = "6.1.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.show-image]
version = "0.14"