Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Processing occurs within the main SemiF-AnnotationPipeline repository which used for temporary data storage. Resulting data for each batch is then moved to the respective permanent blob locations.

Code Block
languagenone
SemiF-AnnotationPipeline
  └── data
      ├── semifield-developed-images
      │   ├── NC_2022-07-27
      │   │   ├── NC_2022-07-27.json
      │   │   │
      │   │   ├── autosfm
      │   │   │   ├── detections.csv
      │   │   │   ├── dem
      │   │   │   │   └── dem.tif
      │   │   │   ├── downscaled_photos
      │   │   │   │   ├── NC_1658926241.png
      │   │   │   │   ├── NC_1658926255.png
      │   │   │   │   └── ...
      │   │   │   ├── downscaled_masks
      │   │   │   │   ├── NC_1658926241_mask.png
      │   │   │   │   ├── NC_1658926255_mask.png
      │   │   │   │   └── ...
      │   │   │   ├── ortho
      │   │   │   │   └── orthomosaic.tif
      │   │   │   ├── project
      │   │   │   │   ├── NC_2022-07-27.psx
      │   │   │   │   └── NC_2022-07-27.files
      │   │   │   └── reference
      │   │   │       ├── camera_reference.csv
      │   │   │       ├── error_statistic.csv
      │   │   │       ├── fov.csv
      │   │   │       └──gcp_reference.csv
      │   │   │
      │   │   ├── images
      │   │   │   ├── NC_1658926241.png
      │   │   │   ├── NC_1658926255.png
      │   │   │   └── ...
      │   │   │
      │   │   ├── masks
      │   │   │   ├── NC_1658926241_mask.png
      │   │   │   ├── NC_1658926255_mask.png
      │   │   │   └── ...
      │   │   │
      │   │   └── metadata
      │   │       ├── NC_1658926241.json
      │   │       ├── NC_1658926255.json
      │   │       └── ...
      │   │
      │   └── ...
      │
      ├── semifield-cutouts
      │   ├── NC_2022-07-27
      │   │   ├── NC_1658926241_0.png
      │   │   ├── NC_1658926241_0.json
      │   │   ├── NC_1658926241_1.png
      │   │   ├── NC_1658926241_1.json
      │   │   ├── NC_1658926255_0.png
      │   │   ├── NC_1658926255_0.json
      │   │   └── ...
      │   └── ...
      │
      ├── semifield-models
      │   └── plant_detector
      │       └── best.pt
      │
      ├── semifield-upload-images
      │   └── ...
      │
      └── semifield-utils
          ├── MD
          │   ├── shapefiles
          │   │   │   ├── MD.shp
          │   │   │   └── ...
          │   │   └── GroundControlPoints.csv 
          ├── NC
          │   ├── shapefiles
          │   │   ├── NC.shp
          │   │   └── ...
          │   └── GroundControlPoints.csv                            
          └── species_info.json
          

...