# This file contains metadata for your plugin.

# This file should be included when you package your plugin.# Mandatory items:

[general]
name=SciPy Filters
qgisMinimumVersion=3.22
description=Filter collection implemented with SciPy
version=0.2
author=Florian Neukirchen
email=mail@riannek.de

about=Gives access to filters implemented with SciPy, including morphology 
    (binary or grey dilation, erosion, closing, opening; tophat etc.);
    statistical filters (median, minimum, percentile etc.), edge detection
    (sobel, prewitt etc.) and convolution with a custom kernel.

tracker=https://github.com/florianneukirchen/scipy_filters/issues
repository=https://github.com/florianneukirchen/scipy_filters
# End of mandatory metadata

# Recommended items:

hasProcessingProvider=yes
# Uncomment the following line and add your changelog:
changelog=0.2
    - Catch exception if SciPy is not installed and offer to install it automatically (with pip)
    - Improved user interface with custom widgets, making it more intuitive and allowing for far better parameters (see breaking changes if you already used version 0.1 in a script or model).
    - Calculate and write band statistics (min, max, mean, std) into the metadata of the output file; enables QGIS to render correctly with min/max stretching
    - New filters:
        - unsharp mask
        - rank filter
        - uniform  filter (a.k.a. mean filter, box filter)
        - estimate local variance
        - estimate local standard deviation
        - range filter 
        - fourier gaussian filter
        - fourier ellipsoid filter
        - fourier uniform filter
        - Wiener filter
        - FFT convolve
    - Breaking changes to the parameters:
        - FOOTPRINTBOOL has been removed, if a footprint is given it is always used.
        - STRUCTURE always takes the actual structure as string, not an int (was index of combobox, the combobox has been replaced by the load button). CUSTOMSTRUCTURE has been removed.
        - Convolve: ORIGIN has been removed. (An improved version is on the todo list)

# Tags are comma separated with spaces allowed
tags=python,raster,filter

homepage=https://github.com/florianneukirchen/scipy_filters
icon=icon.png
# experimental flag
experimental=True

# deprecated flag (applies to the whole plugin, not just a single version)
deprecated=False

# Since QGIS 3.8, a comma separated list of plugins to be installed
# (or upgraded) can be specified.
# Check the documentation for more information.
# plugin_dependencies=

Category of the plugin: Raster, Vector, Database or Web
category=Raster

# If the plugin can run on QGIS Server.
server=False

