DRB Image Extractor
Project description
DRB Image Extractor
It's an applicative part using DRB allowing to extract image from data according its topic.
Packaging
The package python containing an addon image of a DRB topic must have the following instruction:
- a
drb.addon.image
entry point whose its value is the targeted Python package containing thecortex.yaml
file
How to define an addon image ?
Addon Image are defined in a cortex.yaml
file following the template:
topic: <topic_uuid> # target topic
image: # image is an array of object with a name, a source and auxiliaries data
- name:
<extractor>: <extractor_content> # An extrator for the images name
source:
<extractor>: <extractor_content> # An extractor the images itself
aux_data: # Auxiliaries data are optional
<aux_data1>: value1
<aux_data2>: value2
### How to extract an image ?
For the following addon description.
```yaml
topic: b0dad6fa-9ae4-4694-b00b-449cd456d32a # Sentinel-1A Interferometric Wide Swath Level 1 S Product
image:
- name:
constant: quicklook
source:
xquery: |
/preview/quick-look.png
- name:
constant: thumbnail
source:
xquery: /thumbnail.png
The different image node can be extract with this:
from drb.image.core import ImageAddon
import drb.topics.resolver as resolver
if __name__ == '__main__':
node = resolver.create('S1A_IW_RAW__0SDH_20220201T101715_20220201T101734_041718_04F6C6_A26E.SAFE')
# Retrieve the first addon image object corresponding to the product
# here, the quicklook image
image = ImageAddon().apply(node)
# Retrieve the addon image object corresponding to the image name
image = ImageAddon().apply(node=node, image_name='thumbnail')
# Retrieve the addon image object corresponding to the image_name and resolution given in argument
image = ImageAddon().apply(node=node, image_name='quickLook', resolution='10m')
# This will raise an DrbException because it can't find any image addon
image = ImageAddon().apply(node=node, image_name='Non_existing_image')
# To retrieve the DrbNode corresponding to the image, use:
image_node = image.image_node()
If a topic defines more than one image, and image_name is not specified, ImageAddon().apply() return the first image declared in the topic. If the topic of the node is not found in the cortex file, it will also check all the topic's parents recursively.
Extractor
All the information about extractor can be found here
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file drb-image-1.3.0.tar.gz
.
File metadata
- Download URL: drb-image-1.3.0.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c047dfa4f50f1431435f82800ee34f1cc0e66b4894dd2a457392bc2b97b009f7 |
|
MD5 | 8b4997a9b301b865b1df03583868a933 |
|
BLAKE2b-256 | 00b2be7f83b6fb1de10d424784e4c18ad7d641d48fd543a34b2623fb5fa1df72 |
File details
Details for the file drb_image-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: drb_image-1.3.0-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41d264906772895fc8168c88b2aa66acbf9c608f55a21945f74f3f6bcbfd317c |
|
MD5 | 10c605e8f7f09cb97be25284205a3b0b |
|
BLAKE2b-256 | b11e85f00a49d0f7bd6a5f47f6a5c8d80524178e7ad25dcf11125131e8a3acf9 |