We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
extract_chips
We could add a --dataset-type option to extract_chips, to choose between two modes:
--dataset-type
classification
segmentation
Example:
satproc_extract_chips ./image.tif \ --dataset-type classification \ --labels labels.geojson \ --classes A B \ -o ./chips/
Output directory structure:
./chips/ A/ 0_0.tif 0_1.tif ... B/ 0_0.tif 0_1.tif ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We could add a
--dataset-type
option toextract_chips
, to choose between two modes:classification
: Each chip belongs to a class. Chips will be extracted and stored on separate directories per class.segmentation
(default): Same as current behavior. Chips and extent masks (or boundary/distance masks) are generated.Example:
Output directory structure:
The text was updated successfully, but these errors were encountered: