Skip to content

Commit bc57819

Browse files
authored
Fix typos. (#2086)
1 parent 607a012 commit bc57819

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/02_output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The output of the JSON files consist of a set of keypoints, whose ordering is re
6868

6969

7070
## JSON Output Format
71-
There are 2 alternatives to save the OpenPose output. But both of them follow the keypoint ordering described in the the section [Keypoint Ordering in C++/Python](#body-keypoints-in-c-python) section (which you should read next).
71+
There are 2 alternatives to save the OpenPose output. But both of them follow the keypoint ordering described in the section [Keypoint Ordering in C++/Python](#body-keypoints-in-c-python) section (which you should read next).
7272

7373
1. The `--write_json` flag saves the people pose data into JSON files. Each file represents a frame, it has a `people` array of objects, where each object has:
7474
1. `pose_keypoints_2d`: Body part locations (`x`, `y`) and detection confidence (`c`) formatted as `x0,y0,c0,x1,y1,c1,...`. The coordinates `x` and `y` can be normalized to the range [0,1], [-1,1], [0, source size], [0, output size], etc. (see the flag `--keypoint_scale` for more information), while the confidence score (`c`) in the range [0,1].

doc/advanced/heatmap_output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ arrayData = x[1+int(round(x[0])):]
7575

7676

7777
## Heatmap Scaling
78-
Note that `--net_resolution` sets the size of the network, thus also the size of the output heatmaps. This heatmaps are resized while keeping the aspect ratio. When aspect ratio of the the input and network are not the same, padding is added at the bottom and/or right part of the output heatmaps.
78+
Note that `--net_resolution` sets the size of the network, thus also the size of the output heatmaps. This heatmaps are resized while keeping the aspect ratio. When aspect ratio of the input and network are not the same, padding is added at the bottom and/or right part of the output heatmaps.

src/openpose/net/bodyPartConnectorBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ namespace op
139139
roi.y -= marginY;
140140
roi.width += 2*marginX;
141141
roi.height += 2*marginY;
142-
// partFirstNon0+1 for for loops
142+
// partFirstNon0+1 for loops
143143
partLastNon0++;
144144
// From [p1, p2] to [p1, width, height]
145145
// +1 to account for 1-line keypoints

0 commit comments

Comments
 (0)