Changes between Initial Version and Version 1 of ImageFilters/HSBFilter
- Timestamp:
- 2015-07-30T18:06:26+02:00 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImageFilters/HSBFilter
v1 v1 1 == HSB Filter == 2 === Meta information === 3 {{{ 4 { 5 "classname":"org.openstreetmap.josm.plugins.rasterfilters.filters.HSBFilterImpl", 6 "binaries":["plugins/JOSM-filters.jar"], 7 "name":"hsb", 8 "title": "Hue / Saturation / Brightness", 9 "controls": [ 10 { 11 "type": "linear_slider", 12 "name": "hue", 13 "title": "Hue", 14 "value_type": "float", 15 "scale": [0, 1], 16 "default": 0, 17 "decoration": "none" 18 }, 19 { 20 "type": "linear_slider", 21 "name": "saturation", 22 "title": "Saturation", 23 "value_type": "float", 24 "scale": [0, 1], 25 "default": 0, 26 "decoration": "none" 27 }, 28 { 29 "type": "linear_slider", 30 "name": "brightness", 31 "title": "Brightness", 32 "value_type": "float", 33 "scale": [0, 1], 34 "default": 0, 35 "decoration": "none" 36 } 37 ] 38 } 39 }}}
