forked from HimariO/py-bottom-up-attention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
detectron2_mscoco_proposal_maxnms.py
260 lines (227 loc) · 10.7 KB
/
detectron2_mscoco_proposal_maxnms.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# coding=utf-8
# Copyleft 2019 Project LXRT
import argparse
import base64
import csv
import json
import math
import os
import random
import sys
import time
csv.field_size_limit(sys.maxsize)
# import some common libraries
import cv2
import numpy as np
import torch
import tqdm
import detectron2
from detectron2.engine import DefaultPredictor
from detectron2.config import get_cfg
from detectron2.modeling.postprocessing import detector_postprocess
from detectron2.modeling.roi_heads.fast_rcnn import FastRCNNOutputLayers, FastRCNNOutputs
D2_ROOT = os.path.dirname(os.path.dirname(detectron2.__file__)) # Root of detectron2
DATA_ROOT = os.getenv('COCO_IMG_ROOT', '/ssd-playpen/data/mscoco/images/')
MIN_BOXES = 36
MAX_BOXES = 36
parser = argparse.ArgumentParser()
parser.add_argument('--split', default='train2014', help='train2014, val2014')
parser.add_argument('--batchsize', default=4, type=int, help='batch_size')
parser.add_argument('--model', default='res5', type=str, help='options: "res4", "res5"; features come from)')
parser.add_argument('--weight', default='vg', type=str,
help='option: mask, obj, vg. mask:mask_rcnn on COCO, obj: faster_rcnn on COCO, vg: faster_rcnn on Visual Genome')
args = parser.parse_args()
from torchvision.ops import nms
from detectron2.structures import Boxes, Instances
def fast_rcnn_inference_single_image(
boxes, scores, image_shape, score_thresh, nms_thresh, topk_per_image
):
scores = scores[:, :-1]
num_bbox_reg_classes = boxes.shape[1] // 4
# Convert to Boxes to use the `clip` function ...
boxes = Boxes(boxes.reshape(-1, 4))
boxes.clip(image_shape)
boxes = boxes.tensor.view(-1, num_bbox_reg_classes, 4) # R x C x 4
# Select max scores
max_scores, max_classes = scores.max(1) # R x C --> R
num_objs = boxes.size(0)
boxes = boxes.view(-1, 4)
idxs = torch.arange(num_objs).cuda() * num_bbox_reg_classes + max_classes
max_boxes = boxes[idxs] # Select max boxes according to the max scores.
# Apply NMS
keep = nms(max_boxes, max_scores, nms_thresh)
if topk_per_image >= 0:
keep = keep[:topk_per_image]
boxes, scores = max_boxes[keep], max_scores[keep]
result = Instances(image_shape)
result.pred_boxes = Boxes(boxes)
result.scores = scores
result.pred_classes = max_classes[keep]
return result, keep
def doit(detector, raw_images):
with torch.no_grad():
# Preprocessing
inputs = []
for raw_image in raw_images:
image = detector.transform_gen.get_transform(raw_image).apply_image(raw_image)
image = torch.as_tensor(image.astype("float32").transpose(2, 0, 1))
inputs.append({"image": image, "height": raw_image.shape[0], "width": raw_image.shape[1]})
images = detector.model.preprocess_image(inputs)
# Run Backbone Res1-Res4
features = detector.model.backbone(images.tensor)
# Generate proposals with RPN
proposals, _ = detector.model.proposal_generator(images, features, None)
# Run RoI head for each proposal (RoI Pooling + Res5)
proposal_boxes = [x.proposal_boxes for x in proposals]
features = [features[f] for f in detector.model.roi_heads.in_features]
box_features = detector.model.roi_heads._shared_roi_transform(
features, proposal_boxes
)
feature_pooled = box_features.mean(dim=[2, 3]) # (sum_proposals, 2048), pooled to 1x1
# Predict classes and boxes for each proposal.
pred_class_logits, pred_proposal_deltas = detector.model.roi_heads.box_predictor(feature_pooled)
rcnn_outputs = FastRCNNOutputs(
detector.model.roi_heads.box2box_transform,
pred_class_logits,
pred_proposal_deltas,
proposals,
detector.model.roi_heads.smooth_l1_beta,
)
# Fixed-number NMS
instances_list, ids_list = [], []
probs_list = rcnn_outputs.predict_probs()
boxes_list = rcnn_outputs.predict_boxes()
for probs, boxes, image_size in zip(probs_list, boxes_list, images.image_sizes):
for nms_thresh in np.arange(0.3, 1.0, 0.1):
instances, ids = fast_rcnn_inference_single_image(
boxes, probs, image_size,
score_thresh=0.2, nms_thresh=nms_thresh, topk_per_image=MAX_BOXES
)
if len(ids) >= MIN_BOXES:
break
instances_list.append(instances)
ids_list.append(ids)
# Post processing for features
features_list = feature_pooled.split(rcnn_outputs.num_preds_per_image) # (sum_proposals, 2048) --> [(p1, 2048), (p2, 2048), ..., (pn, 2048)]
roi_features_list = []
for ids, features in zip(ids_list, features_list):
roi_features_list.append(features[ids].detach())
# Post processing for bounding boxes (rescale to raw_image)
raw_instances_list = []
for instances, input_per_image, image_size in zip(
instances_list, inputs, images.image_sizes
):
height = input_per_image.get("height", image_size[0])
width = input_per_image.get("width", image_size[1])
raw_instances = detector_postprocess(instances, height, width)
raw_instances_list.append(raw_instances)
return raw_instances_list, roi_features_list
def dump_features(writer, detector, pathXid):
img_paths, img_ids = zip(*pathXid)
imgs = [cv2.imread(img_path) for img_path in img_paths]
instances_list, features_list = doit(detector, imgs)
for img, img_id, instances, features in zip(imgs, img_ids, instances_list, features_list):
instances = instances.to('cpu')
features = features.to('cpu')
num_objects = len(instances)
item = {
"img_id": img_id,
"img_h": img.shape[0],
"img_w": img.shape[1],
"objects_id": base64.b64encode(instances.pred_classes.numpy()).decode(), # int64
"objects_conf": base64.b64encode(instances.scores.numpy()).decode(), # float32
"attrs_id": base64.b64encode(np.zeros(num_objects, np.int64)).decode(), # int64
"attrs_conf": base64.b64encode(np.zeros(num_objects, np.float32)).decode(), # float32
"num_boxes": num_objects,
"boxes": base64.b64encode(instances.pred_boxes.tensor.numpy()).decode(), # float32
"features": base64.b64encode(features.numpy()).decode() # float32
}
writer.writerow(item)
FIELDNAMES = ["img_id", "img_h", "img_w", "objects_id", "objects_conf",
"attrs_id", "attrs_conf", "num_boxes", "boxes", "features"]
def extract_feat(outfile, detector, pathXid):
# Check existing images in tsv file.
wanted_ids = set([image_id[1] for image_id in pathXid])
found_ids = set()
if os.path.exists(outfile):
with open(outfile, 'r') as tsvfile:
reader = csv.DictReader(tsvfile, delimiter='\t', fieldnames=FIELDNAMES)
for item in reader:
found_ids.add(item['img_id'])
missing = wanted_ids - found_ids
# Extract features for missing images.
missing_pathXid = list(filter(lambda x:x[1] in missing, pathXid))
with open(outfile, 'a') as tsvfile:
writer = csv.DictWriter(tsvfile, delimiter='\t', fieldnames=FIELDNAMES)
for start in tqdm.tqdm(range(0, len(pathXid), args.batchsize)):
pathXid_trunk = pathXid[start: start + args.batchsize]
dump_features(writer, detector, pathXid_trunk)
"""
try:
dump_features(writer, detector, pathXid_trunk)
except Exception as e:
print(e)
break
"""
def load_image_ids(img_root, split_dir):
"""images in the same directory are in the same split"""
pathXid = []
img_root = os.path.join(img_root, split_dir)
for name in os.listdir(img_root):
idx = name.split(".")[0]
pathXid.append(
(
os.path.join(img_root, name),
idx))
if split_dir == 'val2014':
print("Place the features of minival in the front of val2014 tsv.")
# Put the features of 5000 minival images in front.
minival_img_ids = set(json.load(open('data/mscoco_imgfeat/coco_minival_img_ids.json')))
a, b = [], []
for item in pathXid:
img_id = item[1]
if img_id in minival_img_ids:
a.append(item)
else:
b.append(item)
assert len(a) == 5000
assert len(a) + len(b) == len(pathXid)
pathXid = a + b
assert len(pathXid) == 40504
return pathXid
def build_model():
# Build model and load weights.
if args.weight == 'mask':
cfg = get_cfg()
cfg.merge_from_file(os.path.join(
D2_ROOT, "configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml"))
cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.5 # set threshold for this model
print("Load the Mask RCNN weight for ResNet101, pretrained on MS COCO segmentation. ")
cfg.MODEL.WEIGHTS = "detectron2://COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x/138363239/model_final_a2914c.pkl"
elif args.weight == 'obj':
print("Load the Faster RCNN weight for ResNet101, pretrained on MS COCO detection.")
cfg = get_cfg()
cfg.merge_from_file(os.path.join(
D2_ROOT, "configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml"))
cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.5 # set threshold for this model
cfg.MODEL.WEIGHTS = "detectron2://COCO-Detection/faster_rcnn_R_101_C4_3x/138204752/model_final_298dad.pkl"
elif args.weight == 'vg':
cfg = get_cfg() # Renew the cfg file
cfg.merge_from_file(os.path.join(
D2_ROOT, "configs/VG-Detection/faster_rcnn_R_101_C4_caffemaxpool.yaml"))
cfg.MODEL.RPN.POST_NMS_TOPK_TEST = 300
cfg.MODEL.ROI_HEADS.NMS_THRESH_TEST = 0.6
cfg.MODEL.ROI_HEADS.SCORE_THRESH_TEST = 0.2
cfg.INPUT.MIN_SIZE_TEST = 600
cfg.INPUT.MAX_SIZE_TEST = 1000
cfg.MODEL.RPN.NMS_THRESH = 0.7
# Find a model from detectron2's model zoo. You can either use the https://dl.fbaipublicfiles.... url, or use the following shorthand
cfg.MODEL.WEIGHTS = "http://nlp.cs.unc.edu/models/faster_rcnn_from_caffe.pkl"
else:
assert False, "no this weight"
detector = DefaultPredictor(cfg)
return detector
if __name__ == "__main__":
pathXid = load_image_ids(DATA_ROOT, args.split) # Get paths and ids
detector = build_model()
extract_feat('data/mscoco_imgfeat/%s_d2obj36_batch.tsv' % args.split, detector, pathXid)