Implementation of mask r-cnn for practice
Surveyed Related Papers
https://docs.google.com/presentation/d/1OyoITuqV_OD0Y37HTnhrMvYxfm3jYLLiMSrDXHctu_E/edit?usp=sharing
TODO:Implement dataloader of COCO, backbone models
02.14 implemented coco dataloader with img, bboxes
TODO:
- skeleton list up, outline
- dataloader augmentation(detectron2 ref.) +bbox transformation
02.21 Used Gyeongsik's codes as a reference and created baseline skeletons based on them
02.24
- Image preprocessing Implemented(resize to 1024**2, zeropadding, transformations)
- FPN and Anchor Generation code Implemented
02.25 Implemented IoU(simple) function
TODO:
- RPN bbox_reg, objectiveness head implementation
03.02 Implemented and Visualized Pos&Neg anchor(IoU > 0.5) 03.03 Implemented IoU tensor broadcasting instead of for loops
03.05 implemented anchor_labeling, subsampling codes / visualized pos/neg windows
03.10 Implemented rpn losses, transform_delta, RPN under train
03.13 Tested rpn on one image
03.15 Implemented NMS function
03.21 Trained RPN, visualized qualitative results
TODO: ROI align