mmsegmentation
mmsegmentation copied to clipboard
How to get RGB result rather Gray Image on ADE20k val set
how to get RGB Image rather Gray Image on ADE20k val set?
Hi @HaoGuo98,
You might add --show-dir
argument to the test command.
https://mmsegmentation.readthedocs.io/en/latest/inference.html#test-a-dataset
./tools/dist_test.sh configs/dnlnet/dnlnet_r101-d8_512x512_80k_ade20k.py work_dirs/dnl_ade.pth 4 --show-dir ade_test I try to use this command but the picture cannot be saved.
Could you show me a command which can generate RGB results on val set of ADE20K? Many thanks!
We specify in the document that --show-dir
only supports the Single GPU test, you could try it again with a single GPU.
python tools/test.py configs/dnlnet/dnlnet_r101-d8_512x512_80k_ade20k.py work_dirs/dnl_ade.pth --show-dir ade_test
the bar do not move.
Should i fix the warning?
We specify in the document that
--show-dir
only supports the Single GPU test, you could try it again with a single GPU.python tools/test.py configs/dnlnet/dnlnet_r101-d8_512x512_80k_ade20k.py work_dirs/dnl_ade.pth --show-dir ade_test
Hi @HaoGuo98, Is that work?