Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
DOI:
Libraries:
Datasets
pandas
License:
SPovoli commited on
Commit
731a5f9
·
verified ·
1 Parent(s): 94d60b7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -5
README.md CHANGED
@@ -21,6 +21,9 @@ cludes new varieties of berries, such as bilberries, cloudberries, lingonberries
21
  light variations and in cluttered environments. WildBe features 3,516 images, including a total of 18,468 annotated
22
  bounding boxes.
23
 
 
 
 
24
  ## How to use: an example of visualization
25
  ```python
26
  import json
@@ -29,10 +32,10 @@ from datasets import load_dataset
29
  from PIL import Image, ImageDraw
30
  # Color map for classes
31
  classes_color_map = {
32
- 0: (0, 0, 0),
33
- 1: (255, 0, 0),
34
- 2: (0, 255, 0),
35
- 3: (0, 0, 255),
36
  }
37
  # Load the dataset
38
  dataset = load_dataset("FBK-TeV/WildBe", split="validation")
@@ -59,7 +62,7 @@ for label in labels:
59
  )
60
  image.show()
61
  ```
62
-
63
  ## ArXiv link
64
  https://arxiv.org/abs/2405.07550
65
 
 
21
  light variations and in cluttered environments. WildBe features 3,516 images, including a total of 18,468 annotated
22
  bounding boxes.
23
 
24
+ ![Teaser](resources/teaser.png)
25
+
26
+
27
  ## How to use: an example of visualization
28
  ```python
29
  import json
 
32
  from PIL import Image, ImageDraw
33
  # Color map for classes
34
  classes_color_map = {
35
+ 0: (225,15,10),
36
+ 1: (40, 150, 210),
37
+ 2: (10,0,210),
38
+ 3: (130,5,125),
39
  }
40
  # Load the dataset
41
  dataset = load_dataset("FBK-TeV/WildBe", split="validation")
 
62
  )
63
  image.show()
64
  ```
65
+ ![Teaser](resources/images_examples.png)
66
  ## ArXiv link
67
  https://arxiv.org/abs/2405.07550
68