This commit is contained in:
Adam J. Stewart 2021-07-07 15:02:18 -05:00
Родитель 3fb663b6a0
Коммит 6938f3c546
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C66C0675661156FC
1 изменённых файлов: 11 добавлений и 9 удалений

Просмотреть файл

@ -6,31 +6,33 @@ A collection of common terms used in :mod:`torchgeo` that may be unfamiliar to e
1. Deep learning researchers who don't know remote sensing
2. Remote sensing researchers who don't know deep learning
.. todo:: We shouldn't need to bold these keys ourselves, opened an issue at https://github.com/pytorch/pytorch_sphinx_theme/issues/133
.. glossary::
chip
**chip**
Synonym for :term:`patch`. A smaller image sampled from a larger :term:`tile`.
classification
**classification**
A computer vision task that involves predicting the image class for an entire image or a specific bounding box.
instance segmentation
**instance segmentation**
A computer vision task that involves predicting labels for each pixel in an image such that each object has a unique label.
object detection
**object detection**
A computer vision task that involves predicting bounding boxes around each object in an image.
patch
**patch**
Synonym for :term:`chip`. A smaller image sampled from a larger :term:`tile`.
regression
**regression**
A computer vision task that involves predicting a real valued number based on an image.
semantic segmentation
**semantic segmentation**
A computer vision task that involves predicting labels for each pixel in an image such that each class has a unique label.
swath
**swath**
A set of :term:`tiles <tile>` along a satellite trajectory.
tile
**tile**
A single image file taken by a remote sensor like a satellite.