Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. [Dataset Preparation]
  2. [Step-1]:
  3. Input image should be randomly croped & resized to 12 x 12 as PNet process small size
  4. image at a faster speed to propose face regions.
  5. [Step-2]:
  6. Iou(croped_image, ground_truth) is calculated.For negative image : Iou(croped_image, ground_truth) <= 0.3
  7. positive image(where Face is present) : Iou(croped_image, ground_truth) >= 0.6
  8. Ignore Image/part image : Iou(croped_image, ground_truth) <=0.4.
  9. [Step-3]:
  10. This pos, neg & ignore samples are saved in tfrecord format & are used for training PNet.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement