-
Notifications
You must be signed in to change notification settings - Fork 4
/
configuration.py
36 lines (25 loc) · 1.11 KB
/
configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""Contains transformer configuration information
"""
from agpypeline.configuration import Configuration
class ConfigurationSoilmask(Configuration):
"""Configuration information for Soil Mask transformer"""
# Silence this error until we have public methods
# pylint: disable=too-few-public-methods
# The version number of the transformer
transformer_version = '2.2'
# The transformer description
transformer_description = 'RGB Image Soil Masking'
# Short name of the transformer
transformer_name = 'soilmask'
# The name of the author of the extractor
author_name = 'Chris Schnaufer'
# The email of the author of the extractor
author_email = 'schnaufer@email.arizona.edu'
# Repository URI of where the source code lives
repository = 'https://github.com/AgPipeline/transformer-soilmask'
# Contributors to this transformer
contributors = ['Max Burnette', 'Zongyang Li', 'Todd Nicholson']
# The sensor associated with the transformer
transformer_sensor = 'stereoTop'
# The transformer type (eg: 'rgbmask', 'plotclipper')
transformer_type = 'rgbmask'