git clone https://github.com/hkchengrex/vos-benchmark
pip install -e vos-benchmark
pip install vos-benchmark
(from the vos-benchmark root directory)
python benchmark.py -g <paths to ground-truth directory> -m <paths to prediction directory> -n <number of processes, 16 by default>
# e.g. python benchmark.py -g /path/to/ground-truth1 /path/to/ground-truth2 -m /path/to/prediction1 /path/to/prediction2 -n 16
from vos_benchmark.benchmark import benchmark
# both arguments are passed as a list -- multiple datasets can be specified
benchmark([path to ground-truth directory], [<path to prediction directory>])
See benchmark.py
for an example, and see vos_benchmark/benchmark.py
for the function signature with additional options.
A results.csv
will be saved in the prediction directory.
I built this tool to accelerate evaluations (J&F) on different video object segmentation benchmarks. Previously, davis2017-evaluation is used, which has several limitations:
- It is slow. Evaluating predictions on the validation set of DAVIS-2017 (30 videos) takes 73.3 seconds. It would take longer for any larger dataset. Ours takes 5.36 seconds (with 16 threads).
- It is tailored to the DAVIS dataset. Evaluating other datasets (like converted OVIS, UVO, or the long video dataset) requires mocking them as DAVIS (setting up "split" text files and following DAVIS's file structure). We don't care. We just take the paths to two folders (ground-truth and predictions) as input.
- It does not work with non-continuous object IDs. Ours does.
I have tested this script on DAVIS-16/17 and confirmed that it produces identical results as the official evaluation script.
- This benchmarking script is simple and dumb. It does not intelligently resolve input problems. If something does not work, most likely the input is problematic. Garbage in, garbage out. Check your input (see below).
We read the input masks using
Image.open
from PIL. Paletted png files and grayscale png should both work. - We determine the objects in a frame (ground-truth or prediction) with
np.unique
. If there are any types of antialiasing, blurring, smoothing, etc., that spawn new pixel values, this will not work. - From the start of the video, we keep a list of all objects that are seen in either ground-truth or prediction. This is to support datasets where some ground-truth objects appear later in the frame. Predicting objects that are not in the ground-truth harms the final score.
- By default, we skip the first and the last frame during evaluation. This is in line with the standard semi-supervised video object segmentation evaluation protocol in DAVIS. This can be overridden by specifying
-d
or--do_not_skip_first_and_last_frame
, or passingskip_first_and_last=False
(if used as a package). - You can pass text files by specifying
-v
or--video_names
to indicate which videos to evaluate. The text files should contain the names of the videos (without the extension). The text files should contain same videos as the prediction folders and . The text files should have the same name as the prediction folders and be subset of ground-truth folders. - If you don't pass the text files: By default, we don't care if all the videos in the ground-truth folder have corresponding predictions. This is to support datasets that contain videos from different splits (e.g., DAVIS puts train/val splits together) in a single folder. If the prediction only contains videos from the validation set, we would only evaluate those videos. This can be overridden by specifying
-s
or--strict
, or passingstrict=True
(if used as a package). In the strict mode, an exception would be thrown if the sets of videos do not match. - If a video is being evaluated, all the frames in the ground-truth folder must have corresponding predictions. Predictions that do not have corresponding ground-truths are simply ignored.
- If the
results.csv
file already exists in the prediction folder, it will be skipped. This is to prevent accidental overwriting. If you want to overwrite it, specify-o
or--overwrite
, or passoverwrite=True
(if used as a package).
Official DAVIS 2017 evaluation implementation: https://github.com/davisvideochallenge/davis2017-evaluation
BURST benchmark (evaluates HOTA which is not supported here): https://github.com/Ali2500/BURST-benchmark
TrackEval (a powerful tool with more functionalities): https://github.com/JonathonLuiten/TrackEval
DEVA (latest): https://github.com/hkchengrex/Tracking-Anything-with-DEVA
XMem: https://github.com/hkchengrex/XMem