Task 2: Segment Map Content Area
This task consists in segmenting the map content from the rest of the sheet.
This is a rather classical document analysis task as it consist in focusing on the relevant area in order to perform a dedicated analysis. In our case, task 1 would be the following stage in the pipeline.
Given the image of a complete map sheet, you need to locate the boundary of the map content, as illustrated below.

We identified the following challenges:
- The map area usually is well separated from the other elements (title, legend, scale…) by several frames but sometimes map contents exceeds the frame for some large objects.
- The frame itself is not straight and can be damaged.
Input
Note that the inputs for this task are the same as task 3.
The inputs form a set of JPEG RGB images like the one illustrated below. There are complete map sheet images. Those images can be large (10000x10000 pixels).

Ground truth and Expected outputs
Expected output for this task is a binary mask of the map content area. It must be stored in PNG (lossless) format with an 8-bit single channel. Background must be indicated with pixel value 0, and map content area with pixel value 255. We will threshold the image to discard any other value.
The resulting image should look like the one below, which is the expected output for the sample input previously shown.

Results need to be output in a PNG file with the exact same format and naming conventions as the ground truth, except for the GT
part of the filename which should be changed into PRED
:
if the input image is named train/301-INPUT.jpg
, then the output file must be named train/301-OUTPUT-PRED.png
.
Dataset
Content for task 2 is located in the folder named 2-segmaparea
in the dataset archive.
File naming conventions
Train, validation and test folder (if applicable) contain the same kind of files:
${SUBSET}/${NNN}-INPUT.jpg
:
JPEG RGB image containing the input image to process. There are complete map sheet images. Those images can be large (10000x10000 pixels).example:
2-segmaparea/train/101-INPUT.jpg
${SUBSET}/${NNN}-OUTPUT-GT.png
:
PNG GREY image containing a mask of expected map are (same size as input). Map area is indicated by pixels of value255
; all other pixels are set to0
.example:
2-segmaparea/train/101-OUTPUT-GT.png
Number of elements per set
- train: 26 images
- validation: 6 images
- test: 97 images
Evaluation
Evaluation tools and illustrative notebooks provide participants with more details than the summary below. Please subscribe to updates to be notified when they are available.
To evaluate the quality of the segmentation, we will compute the Hausdorff distance between the expected shape do detect and the predicted one. This implies that there is only one (connected, without hole) shape to detect. This measure has the advantage over the "intersection over union", "Jaccard index" and other area measures that it keeps a good "contrast" between results in the case of large objects (because there is no normalization by the area).
More specifically, we will use the "Hausdorff 95" variant which discards the 5 percentiles of higher values (assumed to be outliers) to produce a more stable measure.
Finally, we will compute the average of the measures for all individual map images to produce a global indicator with a confidence measure.
The resulting measure is a float value between 0 and a large value. A lower value is better.