mx-maskrcnn
mx-maskrcnn copied to clipboard
About imglists and cityscape_train_gt_roidb.pkl
I want to train mx-maskrcnn with my own data. I found the data infromation was initially obtained from train.lst. Then how could I creat a .lst file of my own dataset. Any help will be appreciated!
- You need write a python script which walk through you image folder and get the filename and write to an train or val.lst
- you need https://github.com/mcordts/cityscapesScripts to convert you json file to mask images, remember to change label.py to you own label
- delete original pkl in model folder and rcnn/dataset/cityscape.py will create new one.
@perp Thanks for your generous help! I will have a try.