merge
Utilities for merging point clouds.
dirichlet(amat, b, xf, mask, *, enable_logging=False)
Find x that minimizes Ax - b in an L2 sense, subject to x[mask] == xf[mask].
Note, this has only been tested for A as a discrete Laplacian.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
amat
|
array - like[m, m]
|
Square matrix. |
required |
b
|
array - like[m]
|
Right hand side. |
required |
xf
|
array - like[m]
|
Fixed data, only xf[mask] is significant as input. |
required |
mask
|
array-like[m] of bool
|
mask[i] is true if x[i] should be forced to equal xf[i] |
required |
enable_logging
|
bool
|
Optional, enable logger to capture diagnostic messages. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
x |
array - like[m]
|
Solution |
res |
array - like[n]
|
Residual b - Ax |
Source code in src/spurt/utils/merge.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
dirichlet_graph(amat, xf, mask, maxiter=100, *, enable_logging=False)
Specialized implementation of dirichlet.
Specifically to be used for graph Laplacian matrices.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
amat
|
array - like[m, m]
|
Square matrix. |
required |
xf
|
array - like[n, m]
|
Fixed data, only xf[:, mask] is significant as input. |
required |
mask
|
array-like[m] of bool
|
mask[i] is true if x[:, i] should be forced to equal xf[:, i] |
required |
enable_logging
|
bool
|
Optional, enable logger to capture diagnostic messages. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
x |
array - like[n, m]
|
|
Source code in src/spurt/utils/merge.py
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | |
find_common_points(c1, c2)
Given 2 2d (positive integer) point clouds, return the set of common points.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
c1
|
array[n, 2]
|
First set of coordinates, must be integers |
required |
c2
|
array[m, 2]
|
Second set of coordinates, must be integers |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ii |
array[int]
|
Indices of c1 that overlaps c1 |
jj |
array[int]
|
Indices of c2 that overlaps c2, i.e. c1[ii] == c2[jj] |
Source code in src/spurt/utils/merge.py
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 | |
l2_min(amat, b, *, enable_logging=False)
Find x so that Ax-b has least L2 norm.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
amat
|
matrix - like
|
System to solve. This can be a dense or sparse matrix. |
required |
b
|
vector - like
|
Right-hand side. |
required |
enable_logging
|
bool
|
Optional, Enable logger to capture diagnostic messages. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
x |
array
|
L2 minimizer of Ax - b |
r |
array
|
Ax - b |
Source code in src/spurt/utils/merge.py
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 | |
l2_min_cg(amat, b, *, enable_logging=False, x0=None, maxiter=None)
L2 minimization.
Find x so that Ax-b has least L2 norm. Use CG when A == A.T, otherwise use CG to solve the normal equations, ie, use CG to solve A.T A x - A.T b.
Note that if A == A.T, this method will assume A is positive definite, but will not verify that this condition is holds. If A is not positive definiite,
Note also that if A is rank deficient, there is a subspace of solutions, and
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
A
|
matrix - like
|
Sparse real system to solve. |
required |
b
|
vector - like
|
Right-hand side. |
required |
enable_logging
|
bool
|
Optional, Enable logger to capture diagnostic messages. |
False
|
x0
|
vector - like
|
Optional, initial guess |
None
|
maxiter
|
integer
|
Optional, maximum number of iterations |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
x |
array
|
L2 minimizer of Ax - b |
r |
array
|
Ax - b |
P |
SuperLU
|
Preconditioner for the trans(A)A |
Source code in src/spurt/utils/merge.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |
pairwise_unwrapped_diff_deciles(b1, b2)
Deciles for pairwise unwrapped differences.
Given two sets of unwrapped phases that differ by integer cycles of 2pi, Create a histogram from 0-100 percentile in steps of 10.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
b1
|
ndarray
|
First set of unwrapped phase in radians |
required |
b2
|
ndarray
|
Second set of unwrapped phase in radians |
required |
Returns:
| Name | Type | Description |
|---|---|---|
hist |
2D array of (bands, 11)
|
Array of size 11 with percentile values from 0 - 100 |
Source code in src/spurt/utils/merge.py
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 | |