-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
split mltrain #82
split mltrain #82
Conversation
…map in rast and vect format) and mltrain (doing the random forest training)
Todo: Update top-level Readme - all addons are listed and summarized there |
include a check if the map trees_pixel_ndvi exists at beginning of r.trees.mltrain: |
README.md
Outdated
@@ -39,8 +39,9 @@ Repo for code and script transfer between mundialis and RVR - GRASS GIS addons: | |||
- **m.analyse.trees** | |||
|
|||
- **r.trees.peaks** assigns pixels to nearest peak (tree crown). | |||
- **r.trees.mltrain** generates training data for a machine learning (ML) | |||
model to detect trees and trains the model with these training data. | |||
- **r.trees.peaks** generates training data for a machine learning (ML) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- **r.trees.peaks** generates training data for a machine learning (ML) | |
- **r.trees.traindata** generates training data for a machine learning (ML) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Just a very small naming suggestion
|
||
# %option G_OPT_R_OUTPUT | ||
# % key: traindata_r | ||
# % label: primary tree map as raster |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# % label: primary tree map as raster | |
# % label: Preliminary tree map as raster |
# %option G_OPT_V_OUTPUT | ||
# % key: traindata_v | ||
# % label: primary tree map as vector | ||
# % description: Primary tree map in vector format to export and edit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# % description: Primary tree map in vector format to export and edit | |
# % description: Preliminary tree map in vector format to export and edit |
split mltrain into traindata (enabling extration of preliminary tree map in rast and vect format) and mltrain (doing the random forest training)