maxwellhertz
Results
2
comments of
maxwellhertz
> ``` > m = g(r.sub, p.sub) && r.obj == p.obj && r.act == p.act > # defines the workflow of authorization: > 1. check user's role > 2. check...
Just like @saitishmukhametov mentioned before, do resizing in `lib/dataset/DemoDataset.py`: ```python if self.video_flag[self.count]: # Read video self.mode = 'video' ret_val, img0 = self.cap.read() # **Resize** img0 = cv2.resize(img0, (self.img_size, self.img_size)) if...