Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
musimab committed Mar 28, 2022
1 parent f90d9b4 commit 65ac4aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

Create a folder and put the ID card images in that folder
```
mkdir src
mkdir images
```

```
python3 main.py --folder_name "img" --neighbor_box_distance 60 --face_recognition ssd --rotation_interval 60
python3 main.py --folder_name "images" --neighbor_box_distance 60 --face_recognition ssd --rotation_interval 60
```

```
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def getBoxRegions(regions):
if '__main__' == __name__:

parser = argparse.ArgumentParser(description = 'Identity Card Information Extractiion')
parser.add_argument('--folder_name', default="img", type=str, help='folder that contain tc id images')
parser.add_argument('--folder_name', default="images", type=str, help='folder that contain tc id images')
parser.add_argument('--neighbor_box_distance', default=50, type = float, help='Nearest box distance threshold')
parser.add_argument('--face_recognition', default = "ssd", type = str, help='face detection algorithm')
parser.add_argument('--rotation_interval', default = 30, type = int, help='Face search interval for rotation matrix')
Expand Down

0 comments on commit 65ac4aa

Please sign in to comment.