質問編集履歴
2
<code>編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,16 +1,10 @@
|
|
1
|
-
質問失礼致します。
|
2
|
-
|
3
|
-
|
4
|
-
|
5
1
|
現在Pythonを勉強中の初学者になります。
|
6
2
|
|
7
3
|
足の画像上で2点を結び、その長さを測りたいと思っていたのですが
|
8
4
|
|
9
5
|
ユークリッド距離を使用したもののこれからどう実寸の距離を出せばよろしいでしょうか?
|
10
6
|
|
11
|
-
|
7
|
+
```
|
12
|
-
|
13
|
-
|
14
8
|
|
15
9
|
import cv2
|
16
10
|
|
@@ -177,3 +171,5 @@
|
|
177
171
|
cv2.waitKey()
|
178
172
|
|
179
173
|
cv2.destroyAllWindows()
|
174
|
+
|
175
|
+
```
|
1
コメント削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -108,19 +108,13 @@
|
|
108
108
|
|
109
109
|
if(ptlist.pos == ptlist.npoints):
|
110
110
|
|
111
|
-
#print("ptlist",ptlist.pos )
|
112
|
-
|
113
|
-
#print("ptlist",ptlist.npoints )
|
114
|
-
|
115
111
|
print("ptlist.ptlist",ptlist.ptlist)
|
116
112
|
|
117
113
|
xx=cv2.line(img, (ptlist.ptlist[0][0], ptlist.ptlist[0][1]),
|
118
114
|
|
119
115
|
(ptlist.ptlist[1][0], ptlist.ptlist[1][1]), (0, 255, 0), 3)
|
120
116
|
|
121
|
-
#yy=cv2.line(img, (ptlist.ptlist[1][0], ptlist.ptlist[1][1]),
|
122
117
|
|
123
|
-
# (ptlist.ptlist[1][0], ptlist.ptlist[1][1]), (0, 255, 0), 3)
|
124
118
|
|
125
119
|
|
126
120
|
|