@@ -14,7 +14,7 @@ python apply_net.py dump [-h] [-v] [--output <dump_file>] <config> <model> <inpu
14
14
15
15
There are three mandatory arguments:
16
16
- ` <config> ` , configuration file for a given model;
17
- - ` <model> ` , model file with trained parameters
17
+ - ` <model> ` , model file with trained parameters
18
18
- ` <input> ` , input image file name, pattern or folder
19
19
20
20
One can additionally provide ` --output ` argument to define the output file name,
@@ -45,7 +45,7 @@ python apply_net.py show [-h] [-v] [--min_score <score>] [--nms_thresh <threshol
45
45
46
46
There are four mandatory arguments:
47
47
- ` <config> ` , configuration file for a given model;
48
- - ` <model> ` , model file with trained parameters
48
+ - ` <model> ` , model file with trained parameters
49
49
- ` <input> ` , input image file name, pattern or folder
50
50
- ` <visualizations> ` , visualizations specifier; currently available visualizations are:
51
51
* ` bbox ` - bounding boxes of detected persons;
@@ -72,22 +72,22 @@ with ResNet-50 FPN backbone using different visualizations for image `image.jpg`
72
72
``` bash
73
73
python apply_net.py show configs/densepose_R_50_FPN_s1x.yaml DensePose_ResNet50_FPN_s1x-e2e.pkl image.jpg bbox,dp_segm -v
74
74
```
75
- ![ Bounding Box + Segmentation Visualization] ( images/res_bbox_dp_segm.png )
75
+ ![ Bounding Box + Segmentation Visualization] ( images/res_bbox_dp_segm.jpg )
76
76
77
77
2 . Show bounding box and estimated U coordinates for body parts:
78
78
``` bash
79
79
python apply_net.py show configs/densepose_R_50_FPN_s1x.yaml DensePose_ResNet50_FPN_s1x-e2e.pkl image.jpg bbox,dp_u -v
80
80
```
81
- ![ Bounding Box + U Coordinate Visualization] ( images/res_bbox_dp_u.png )
81
+ ![ Bounding Box + U Coordinate Visualization] ( images/res_bbox_dp_u.jpg )
82
82
83
83
3 . Show bounding box and estimated V coordinates for body parts:
84
84
``` bash
85
85
python apply_net.py show configs/densepose_R_50_FPN_s1x.yaml DensePose_ResNet50_FPN_s1x-e2e.pkl image.jpg bbox,dp_v -v
86
86
```
87
- ![ Bounding Box + V Coordinate Visualization] ( images/res_bbox_dp_v.png )
87
+ ![ Bounding Box + V Coordinate Visualization] ( images/res_bbox_dp_v.jpg )
88
88
89
89
4 . Show bounding box and estimated U and V coordinates via contour plots:
90
90
``` bash
91
91
python apply_net.py show configs/densepose_R_50_FPN_s1x.yaml DensePose_ResNet50_FPN_s1x-e2e.pkl image.jpg dp_contour,bbox -v
92
92
```
93
- ![ Bounding Box + Contour Visualization] ( images/res_bbox_dp_contour.png )
93
+ ![ Bounding Box + Contour Visualization] ( images/res_bbox_dp_contour.jpg )
0 commit comments