Datasets:

Languages:
English
ArXiv:
License:
Yinxuan commited on
Commit
4ce2664
·
1 Parent(s): 32fc074

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -18,20 +18,20 @@ This is the official dataset of OCTScenes (https://arxiv.org/abs//2306.09682). O
18
 
19
  In the OCTScenes-A dataset, the 0--3099 scenes without segmentation annotation are for training, while the 3100--3199 scenes with segmentation annotation can be used for testing. In the OCTScenes-B dataset, the 0--4899 scenes without segmentation annotation are for training, while the 4900--4999 scenes with segmentation annotation can be used for testing.
20
 
21
- We have images of three different resolutions for each scene: 128x128, 256x256 and 640x480. The name of each image is in the form `[scene_id]_[frame_id].png`. They are in `./128x128`,`./256x256`, and `./640x480` respectively. The images are compressed using `tar`, and the name of compressed files starts with the resolutions, such as '128_'. Please download all the compressed files, and use 'tar' instruction to decompress the files.
22
 
23
- For example, for the images with the resolution of 128x128, please download all the files starts with '128_', and then merge files into '128x128.tar.gz':
24
 
25
  ```
26
- cat 128_* > 128x128.tar.gz
27
  ```
28
 
29
  And then decompress the file:
30
 
31
  ```
32
- tar xvzf 128x128.tar.gz
33
  ```
34
 
35
  The segmentation results are in `./128x128/segments_128.tar.gz`. Currently, we have the segmentations of scenes 3100-3199 and 4900-4999 with resolutions 128x128. The shape of all of the images is 1x128x128, and the name of each segmentation is in the form `[scene_id]_[frame_id].png`. The int number in each pixel represents the index of the object (ranges from 1 to 10, and 0 represents the background).
36
 
37
- The repository currently only contains a 128x128 size dataset, and 256x256 and 640x480 size datasets will be available soon.
 
18
 
19
  In the OCTScenes-A dataset, the 0--3099 scenes without segmentation annotation are for training, while the 3100--3199 scenes with segmentation annotation can be used for testing. In the OCTScenes-B dataset, the 0--4899 scenes without segmentation annotation are for training, while the 4900--4999 scenes with segmentation annotation can be used for testing.
20
 
21
+ We have images of three different resolutions for each scene: 128x128, 256x256 and 640x480. The name of each image is in the form `[scene_id]_[frame_id].png`. They are in `./128x128`,`./256x256`, and `./640x480` respectively. The images are compressed using `tar`, and the name of compressed files starts with the resolutions, such as 'image_128x128_'. Please download all the compressed files, and use 'tar' instruction to decompress the files.
22
 
23
+ For example, for the images with the resolution of 128x128, please download all the files starts with 'image_128x128_', and then merge files into 'image_128x128.tar.gz':
24
 
25
  ```
26
+ cat image_128x128_* > image_128x128.tar.gz
27
  ```
28
 
29
  And then decompress the file:
30
 
31
  ```
32
+ tar xvzf image_128x128.tar.gz
33
  ```
34
 
35
  The segmentation results are in `./128x128/segments_128.tar.gz`. Currently, we have the segmentations of scenes 3100-3199 and 4900-4999 with resolutions 128x128. The shape of all of the images is 1x128x128, and the name of each segmentation is in the form `[scene_id]_[frame_id].png`. The int number in each pixel represents the index of the object (ranges from 1 to 10, and 0 represents the background).
36
 
37
+ The repository currently contains 128x128 size and 256x256 size datasets, and 640x480 size dataset will be available soon.