Changes between Version 1 and Version 2 of ImageFilters/BrightnessContrast


Ignore:
Timestamp:
2015-07-28T09:25:18+02:00 (10 years ago)
Author:
Nipel-Crumple
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImageFilters/BrightnessContrast

    v1 v2  
    11
    22== Brightness / Contrast ==
     3
     4{{{
     5{
     6                "classname":"org.openstreetmap.josm.plugins.rasterfilters.filters.ContrastFilterImpl",
     7                "binaries":["plugins/JOSM-filters.jar"],
     8        "name":"contrast",
     9        "title": "Contrast / Brightness",
     10        "controls": [
     11                {
     12                        "type": "linear_slider",
     13                        "name": "contrast",
     14                        "title": "Contrast",
     15                        "value_type": "float",
     16                        "scale": [0, 4],
     17                        "default": 1,
     18                        "decoration": "none"
     19                },
     20                {
     21                        "type": "linear_slider",
     22                        "name": "brightness",
     23                        "title": "Brightness",
     24                        "value_type": "float",
     25                        "scale": [0, 4],
     26                        "default": 1,
     27                        "decoration": "none"
     28                }
     29        ]
     30}
     31}}}