forked from liuchunsense/Clutter-Grasp-Dataset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
showlabel.py
105 lines (87 loc) · 3.21 KB
/
showlabel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- coding: utf-8 -*-
"""
@Time : 2020/3/22 22:51
@Auth : 王德鑫
@File :showlabel.py
@IDE :PyCharm
@Function: label可视化
"""
import cv2
import glob
import os
import copy
import time
import math
import numpy as np
path = 'E:/research/dataset/grasp/cornell/wdx_sgdn_new/img' # 数据集路径
savepath = 'E:/research/dataset/grasp/cornell/wdx_sgdn_new/label_imgs'
label_win_name = 'labeling'
label_files = glob.glob(os.path.join(path, 'pcd*Label.txt'))
for labelfile in label_files:
pngfile = labelfile.replace('Label.txt', 'r.png')
if not os.path.exists(pngfile):
continue
im = cv2.imread(pngfile)
# top = 113
# left = 113
# cv2.line(im, (top, left), (top + 300, left), (0, 255, 255), 2)
# cv2.line(im, (top + 300, left), (top + 300, left + 300), (0, 255, 255), 2)
# cv2.line(im, (top + 300, left + 300), (top, left + 300), (0, 255, 255), 2)
# cv2.line(im, (top, left + 300), (top, left), (0, 255, 255), 2)
f = open(labelfile)
points = f.readlines()
f.close()
n = 0
for point in points:
point_data = point.split(' ')
y = int(float(point_data[0]))
x = int(float(point_data[1]))
w = float(point_data[-2]) / 2
n += 1
if n % 10 == 0:
if len(point_data) == 4:
# 圆
cv2.circle(im, (x, y), int(w), (0, 255, 0), 1)
elif len(point_data) == 5:
# 单向抓取
angle = float(point_data[2])
k = math.tan(angle)
if k == 0:
dx = w
dy = 0
else:
dx = k / abs(k) * w / pow(k ** 2 + 1, 0.5)
dy = k * dx
if angle < math.pi:
cv2.line(im, (x, y), (int(x + dx), int(y - dy)), (0, 255, 0), 1)
else:
cv2.line(im, (x, y), (int(x - dx), int(y + dy)), (0, 255, 0), 1)
elif len(point_data) == 6:
# 对称抓取
angle1 = float(point_data[2])
angle2 = float(point_data[3])
k = math.tan(angle1)
if k == 0:
dx = w
dy = 0
else:
dx = k / abs(k) * w / pow(k ** 2 + 1, 0.5)
dy = k * dx
if angle1 < math.pi:
cv2.line(im, (x, y), (int(x + dx), int(y - dy)), (0, 255, 0), 1)
else:
cv2.line(im, (x, y), (int(x - dx), int(y + dy)), (0, 255, 0), 1)
if angle2 < math.pi:
cv2.line(im, (x, y), (int(x + dx), int(y - dy)), (0, 255, 0), 1)
else:
cv2.line(im, (x, y), (int(x - dx), int(y + dy)), (0, 255, 0), 1)
cv2.circle(im, (x, y), 1, (255, 0, 0), -1)
# im[y, x] = [0, 255, 0]
# cv2.imshow('im', im)
savefile = os.path.join(savepath, pngfile.split('pcd')[-1])
cv2.imwrite(savefile, im)
print('generate {}'.format(savefile))
# key = cv2.waitKeyEx()
# if key == 27:
# cv2.destroyAllWindows()
# break