-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
147 lines (106 loc) · 4.5 KB
/
utils.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import vtk
from vtk.util import numpy_support
import numpy as np
import math
def MakeSphereActor(polydata):
mapper = vtk.vtkOpenGLSphereMapper()
mapper.SetRadius(0.1)
mapper.SetInputData(polydata)
actor = vtk.vtkActor()
actor.SetMapper(mapper)
return actor
def MakeActor(polydata):
mapper = vtk.vtkPolyDataMapper()
mapper.SetInputData(polydata)
actor = vtk.vtkActor()
actor.SetMapper(mapper)
return actor
def MakeBoxGlyph():
source = vtk.vtkCubeSource()
source.SetCenter(0, 0, 0)
source.SetXLength(.6)
source.SetYLength(.6)
source.SetZLength(.6)
source.Update()
actor = MakeActor(source.GetOutput())
actor.GetProperty().SetColor(1, 0, 0)
actor.GetProperty().SetOpacity(.2)
return actor
class DeformableGraph():
def __init__(self, polydata):
self.polydata = polydata
self.pointBuffer = numpy_support.vtk_to_numpy(polydata.GetPoints().GetData())
# self.polydata.ShallowCopy(polydata)
self.pointActor = MakeSphereActor(self.polydata)
self.actor = MakeActor(self.polydata)
self.glyphs = []
for i in range(self.polydata.GetNumberOfPoints()):
glyph = MakeBoxGlyph()
pos = self.polydata.GetPoints().GetPoint(i)
matrix = vtk.vtkMatrix4x4()
matrix.SetElement(0, 3, pos[0])
matrix.SetElement(1, 3, pos[1])
matrix.SetElement(2, 3, pos[2])
glyph.SetUserMatrix(matrix)
self.glyphs.append(glyph)
def addToRenderer(self, renderer):
renderer.AddActor(self.pointActor)
renderer.AddActor(self.actor)
for glyph in self.glyphs:
renderer.AddActor(glyph)
def updatePoint(self, idx, pos):
# self.polydata.GetPoints().SetPoint(idx, pos[0], pos[1], pos[2])
self.pointBuffer[idx][0] = pos[0]
self.pointBuffer[idx][1] = pos[1]
self.pointBuffer[idx][2] = pos[2]
self.polydata.GetPoints().Modified()
def modified(self):
for i in range(10):
J = np.zeros((len(self.glyphs)*12, 1), dtype=np.float64)
f = np.zeros((len(self.glyphs)*12, 1), dtype=np.float64)
for j, glyph in enumerate(self.glyphs):
matrix = glyph.GetUserMatrix()
J[j*12+0] = matrix.GetElement(0, 0)
J[j*12+1] = matrix.GetElement(1, 0)
J[j*12+2] = matrix.GetElement(2, 0)
J[j*12+3] = matrix.GetElement(0, 1)
J[j*12+4] = matrix.GetElement(1, 1)
J[j*12+5] = matrix.GetElement(2, 1)
J[j*12+6] = matrix.GetElement(0, 2)
J[j*12+7] = matrix.GetElement(1, 2)
J[j*12+8] = matrix.GetElement(2, 2)
pos = np.array([matrix.GetElement(0, 3), matrix.GetElement(1, 3), matrix.GetElement(2, 3)], dtype=np.float64 )
J[j*12+9] = pos[0]
J[j*12+10] = pos[1]
J[j*12+11] = pos[2]
#Econ???
trans = np.array(self.polydata.GetPoint(j)) - pos
f[j*12+9] = trans[0] * 0.001
f[j*12+10] = trans[1]* 0.001
f[j*12+11] = trans[2]
print(i, ":", np.sum(f))
Jt = J.transpose()
JtJ = np.matmul(J , Jt)
eye = np.identity(JtJ.shape[0])
JtJ += eye * 0.00000001 # Prevent Singular?
Jtf = -J*f
# # #Solve Dynamics
deltas = np.linalg.solve(JtJ, Jtf )
updateJ = J + deltas
#Update Glyphs
for j, glyph in enumerate(self.glyphs):
matrix = glyph.GetUserMatrix()
matrix.SetElement(0, 0, updateJ[j*12+0])
matrix.SetElement(1, 0, updateJ[j*12+1])
matrix.SetElement(2, 0, updateJ[j*12+2])
matrix.SetElement(0, 1, updateJ[j*12+3])
matrix.SetElement(1, 1, updateJ[j*12+4])
matrix.SetElement(2, 1, updateJ[j*12+5])
matrix.SetElement(0, 2, updateJ[j*12+6])
matrix.SetElement(1, 2, updateJ[j*12+7])
matrix.SetElement(2, 2, updateJ[j*12+8])
matrix.SetElement(0, 3, updateJ[j*12+9])
matrix.SetElement(1, 3, updateJ[j*12+10])
matrix.SetElement(2, 3, updateJ[j*12+11])
#Update Point Position Too
#untill converge