XintongHe commited on
Commit
05dc9cd
1 Parent(s): 32a197a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -43,7 +43,6 @@ This dataset consists of around 11,000 unique images of hardwood leaf stomata co
43
  {'image_id': 'STMHD0001',
44
  'species': 'Nuttall oak',
45
  'scientific_name': 'Quercus texana Buckley',
46
- 'image_path': '/root/.cache/huggingface/datasets/downloads/extracted/616a7f76e7e5c0daaf5a0657528c880ae77ffe145914387fa488a87bdbde1b65/Labeled Stomatal Images/STMHD0001.jpg',
47
  'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1024x768>,
48
  'magnification': 100,
49
  'width': 1024,
@@ -62,7 +61,16 @@ This dataset consists of around 11,000 unique images of hardwood leaf stomata co
62
  ```
63
  ## Dataset Structure
64
  ```
65
-
 
 
 
 
 
 
 
 
 
66
 
67
  ### Curation Rationale
68
 
 
43
  {'image_id': 'STMHD0001',
44
  'species': 'Nuttall oak',
45
  'scientific_name': 'Quercus texana Buckley',
 
46
  'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1024x768>,
47
  'magnification': 100,
48
  'width': 1024,
 
61
  ```
62
  ## Dataset Structure
63
  ```
64
+ "image_id"[string]: Unique identifier for each image, corresponding to the file name without the file extension.
65
+ "species"[string]: The common name of the tree’s species the stomata in the image belong to.
66
+ "scientific_name"[string]: The scientific or Latin name of the tree’s species.
67
+ "image"[PIL]: A PIL.Image.Image object containing the image.
68
+ "magnification"[integer]: The magnification level at which the image was captured, represented as an integer.
69
+ "width"[integer]: The width of the image.
70
+ "height"[integer]: The height of the image
71
+ "resolution"[integer]: The resolution of the image
72
+ "annotation_coordinates"[dictionary]: A dictionary containing the category id, where inner_guard_cell_walls was labeled as “0”, whole_stomata (stomatal aperture and guard cells) was labeled as “1”. and bounding box coordinates for the annotated stomatal features, "x_min" represents the horizontal coordinate of the top-left corner of the bounding box, "y_min" represents the vertical coordinate of the top-left corner of the bounding box, "x_max" represents the horizontal coordinate of the bottom-right corner of the bounding box, "y_max" represents the vertical coordinate of the bottom-right corner of the bounding box.
73
+ ```
74
 
75
  ### Curation Rationale
76