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
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
244
245
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
293
294
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613 | #include "moab/DiscreteGeometry/HiReconstruction.hpp"
#include "moab/DiscreteGeometry/DGMSolver.hpp"
#include "moab/HalfFacetRep.hpp"
#ifdef MOAB_HAVE_MPI
#include "moab/ParallelComm.hpp"
#endif
#include "MBTagConventions.hpp"
#define HIREC_USE_AHF
#include <cmath>
#include <deque>
#include <iostream>
namespace moab
{
HiReconstruction::HiReconstruction( Core* impl, ParallelComm* comm, EntityHandle meshIn, int minpnts, bool recwhole )
: mbImpl( impl ), pcomm( comm ), _mesh2rec( meshIn ), _MINPNTS( minpnts )
{
assert( NULL != impl );
ErrorCode error;
_MINEPS = 1e-12;
_dim = 0;
_hasfittings = false;
_hasderiv = false;
#ifdef MOAB_HAVE_MPI
if( !pcomm )
{
pcomm = moab::ParallelComm::get_pcomm( mbImpl, 0 );
}
#endif
error = initialize( recwhole );
if( MB_SUCCESS != error )
{
std::cout << "Error initializing HiReconstruction\n" << std::endl;
exit( 1 );
}
}
HiReconstruction::~HiReconstruction()
{
#ifdef MOAB_HAVE_AHF
ahf = NULL;
#else
delete ahf;
#endif
}
ErrorCode HiReconstruction::initialize( bool recwhole )
{
ErrorCode error;
#ifdef HIREC_USE_AHF
std::cout << "HIREC_USE_AHF: Initializing" << std::endl;
ahf = new HalfFacetRep( mbImpl, pcomm, _mesh2rec, false );
if( !ahf )
{
return MB_MEMORY_ALLOCATION_FAILED;
}
error = ahf->initialize();MB_CHK_ERR( error );
#else
ahf = NULL;
#endif
// error = ahf->get_entity_ranges(_inverts,_inedges,_infaces,_incells); MB_CHK_ERR(error);
error = mbImpl->get_entities_by_dimension( _mesh2rec, 0, _inverts );MB_CHK_ERR( error );
error = mbImpl->get_entities_by_dimension( _mesh2rec, 1, _inedges );MB_CHK_ERR( error );
error = mbImpl->get_entities_by_dimension( _mesh2rec, 2, _infaces );MB_CHK_ERR( error );
error = mbImpl->get_entities_by_dimension( _mesh2rec, 3, _incells );MB_CHK_ERR( error );
if( _inedges.size() && _infaces.empty() && _incells.empty() )
{
_dim = 1;
_MAXPNTS = 13;
}
else if( _infaces.size() && _incells.empty() )
{
_dim = 2;
_MAXPNTS = 128;
}
else
{
MB_SET_ERR( MB_FAILURE, "Encountered a non-manifold mesh or a mesh with volume elements" );
}
// get locally hosted vertices by filtering pstatus
#ifdef MOAB_HAVE_MPI
if( pcomm )
{
error = pcomm->filter_pstatus( _inverts, PSTATUS_GHOST, PSTATUS_NOT, -1, &_verts2rec );MB_CHK_ERR( error );
}
else
{
_verts2rec = _inverts;
}
#else
_verts2rec = _inverts;
#endif
_nv2rec = _verts2rec.size();
if( recwhole )
{
// compute normals(surface) or tangent vector(curve) for all locally hosted vertices
if( 2 == _dim )
{
compute_average_vertex_normals_surf();
}
else if( 1 == _dim )
{
compute_average_vertex_tangents_curve();
}
else
{
MB_SET_ERR( MB_FAILURE, "Unknow space dimension" );
}
_hasderiv = true;
}
return error;
}
/***************************************************
* User Interface for Reconstruction of Geometry *
***************************************************/
ErrorCode HiReconstruction::reconstruct3D_surf_geom( int degree, bool interp, bool safeguard, bool reset )
{
assert( 2 == _dim );
if( _hasfittings && !reset )
{
// This object has precomputed fitting results and user don't want to reset
return MB_SUCCESS;
}
else
{
_initfittings = _hasfittings = false;
}
// initialize for geometric information
initialize_surf_geom( degree );
ErrorCode error;
double *coeffs, *coords;<--- The scope of the variable 'coeffs' can be reduced. [+]The scope of the variable 'coeffs' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level. <--- The scope of the variable 'coords' can be reduced. [+]The scope of the variable 'coords' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int* degree_out;<--- The scope of the variable 'degree_out' can be reduced. [+]The scope of the variable 'degree_out' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int ncoeffs = ( degree + 2 ) * ( degree + 1 ) / 2;
// DBG
int dcount = 0;<--- Variable 'dcount' is assigned a value that is never used.
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert )
{
int index = _verts2rec.index( *ivert );
// for debug
/*if(index==70){
EntityHandle vid = *ivert;
double vertcoords[3];
error = mbImpl->get_coords(&vid,1,vertcoords);
}*/
size_t istr = _vertID2coeffID[index];
coords = &( _local_coords[9 * index] );
coeffs = &( _local_fit_coeffs[istr] );
degree_out = &( _degrees_out[index] );
_interps[index] = interp;
error = polyfit3d_walf_surf_vertex( *ivert, interp, degree, _MINPNTS, safeguard, 9, coords, degree_out, ncoeffs,
coeffs );MB_CHK_ERR( error );
// DBG
if( degree_out[0] < degree ) dcount += 1;<--- Variable 'dcount' is assigned a value that is never used.
}
// DBG
// std::cout<<"Total #points ="<<_verts2rec.size()<<", #degraded points = "<<dcount<<std::endl;
_geom = HISURFACE;
_hasfittings = true;
return error;
}
ErrorCode HiReconstruction::reconstruct3D_surf_geom( size_t npts,
int* degrees,
bool* interps,
bool safeguard,
bool reset )
{
assert( _dim == 2 );
if( npts != _nv2rec )
{
MB_SET_ERR( MB_FAILURE, "Input number of degrees doesn't match number of vertices" );
}
if( _hasfittings && !reset )
{
return MB_SUCCESS;
}
else
{
_initfittings = _hasfittings = false;
}
ErrorCode error;
// initialization for fitting
initialize_surf_geom( npts, degrees );
double *coeffs, *coords;<--- The scope of the variable 'coeffs' can be reduced. [+]The scope of the variable 'coeffs' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level. <--- The scope of the variable 'coords' can be reduced. [+]The scope of the variable 'coords' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int* degree_out;<--- The scope of the variable 'degree_out' can be reduced. [+]The scope of the variable 'degree_out' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
size_t i = 0;
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert, ++i )
{
int index = _verts2rec.index( *ivert );
assert( -1 != index );
size_t istr = _vertID2coeffID[index];
coords = &( _local_coords[9 * index] );
coeffs = &( _local_fit_coeffs[istr] );
degree_out = &( _degrees_out[index] );
_interps[index] = interps[i];
int ncoeffs = ( degrees[i] + 2 ) * ( degrees[i] + 1 ) / 2;
error = polyfit3d_walf_surf_vertex( *ivert, interps[i], degrees[i], _MINPNTS, safeguard, 9, coords, degree_out,
ncoeffs, coeffs );MB_CHK_ERR( error );
}
_geom = HISURFACE;
_hasfittings = true;
return error;
}
ErrorCode HiReconstruction::reconstruct3D_curve_geom( int degree, bool interp, bool safeguard, bool reset )
{
assert( _dim == 1 );
if( _hasfittings && !reset )
{
return MB_SUCCESS;
}
else
{
_initfittings = _hasfittings = false;
}
initialize_3Dcurve_geom( degree );
ErrorCode error;
double *coords = 0, *coeffs;<--- The scope of the variable 'coeffs' can be reduced. [+]The scope of the variable 'coeffs' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int* degree_out;<--- The scope of the variable 'degree_out' can be reduced. [+]The scope of the variable 'degree_out' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int ncoeffs = 3 * ( degree + 1 );
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert )
{
int index = _verts2rec.index( *ivert );
assert( index != -1 );
size_t istr = _vertID2coeffID[index];
coeffs = &( _local_fit_coeffs[istr] );
degree_out = &( _degrees_out[index] );
_interps[index] = interp;
error = polyfit3d_walf_curve_vertex( *ivert, interp, degree, _MINPNTS, safeguard, 0, coords, degree_out,
ncoeffs, coeffs );MB_CHK_ERR( error );
}
_geom = HI3DCURVE;
_hasfittings = true;
return error;
}
ErrorCode HiReconstruction::reconstruct3D_curve_geom( size_t npts,
int* degrees,
bool* interps,
bool safeguard,
bool reset )
{
assert( _dim == 1 );
ErrorCode error;
if( npts != _nv2rec )
{
MB_SET_ERR( MB_FAILURE, "Input number of degrees doesn't match the number of vertices" );
}
if( _hasfittings && !reset )
{
return MB_SUCCESS;
}
else
{
_initfittings = _hasfittings = false;
}
// initialize
initialize_3Dcurve_geom( npts, degrees );
double *coords = 0, *coeffs;<--- The scope of the variable 'coeffs' can be reduced. [+]The scope of the variable 'coeffs' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
int* degree_out;<--- The scope of the variable 'degree_out' can be reduced. [+]The scope of the variable 'degree_out' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
size_t i = 0;
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert, ++i )
{
int index = _verts2rec.index( *ivert );
size_t istr = _vertID2coeffID[index];
coeffs = &( _local_fit_coeffs[istr] );
degree_out = &( _degrees_out[index] );
_interps[index] = interps[i];
int ncoeffs = 3 * ( degrees[i] + 1 );
error = polyfit3d_walf_curve_vertex( *ivert, interps[i], degrees[i], _MINPNTS, safeguard, 0, coords, degree_out,
ncoeffs, coeffs );MB_CHK_ERR( error );
}
_geom = HI3DCURVE;
_hasfittings = true;
return error;
}
ErrorCode HiReconstruction::polyfit3d_walf_surf_vertex( const EntityHandle vid,
const bool interp,
int degree,
int minpnts,
const bool safeguard,
const int ncoords,
double* coords,
int* degree_out,
const int ncoeffs,
double* coeffs )
{
assert( _dim == 2 );
ErrorCode error;
int ring = estimate_num_rings( degree, interp );
// std::cout<<"ring = "<<ring<<std::endl;
// get n-ring neighbors
Range ngbvs;
error = obtain_nring_ngbvs( vid, ring, minpnts, ngbvs );MB_CHK_ERR( error );
// for debug
/*if(_verts2rec.index(vid)==70){
for(Range::iterator ingb=ngbvs.begin();ingb!=ngbvs.end();++ingb) std::cerr <<
_verts2rec.index(*ingb) << " "; std::cout << std::endl;
}*/
// get coordinates;
size_t nverts = ngbvs.size();
assert( nverts );
double* ngbcoords = new double[nverts * 3];
error = mbImpl->get_coords( ngbvs, ngbcoords );MB_CHK_ERR( error );
// get normals
double* ngbnrms = new double[nverts * 3];
error = get_normals_surf( ngbvs, ngbnrms );MB_CHK_ERR( error );
// switch vid to first one
int index = ngbvs.index( vid );
assert( index != -1 );
std::swap( ngbcoords[0], ngbcoords[3 * index] );
std::swap( ngbcoords[1], ngbcoords[3 * index + 1] );
std::swap( ngbcoords[2], ngbcoords[3 * index + 2] );
std::swap( ngbnrms[0], ngbnrms[3 * index] );
std::swap( ngbnrms[1], ngbnrms[3 * index + 1] );
std::swap( ngbnrms[2], ngbnrms[3 * index + 2] );
// local WLS fitting
int degree_pnt, degree_qr;
polyfit3d_surf_get_coeff( nverts, ngbcoords, ngbnrms, degree, interp, safeguard, ncoords, coords, ncoeffs, coeffs,
degree_out, °ree_pnt, °ree_qr );
delete[] ngbcoords;
delete[] ngbnrms;
return error;
}
ErrorCode HiReconstruction::polyfit3d_walf_curve_vertex( const EntityHandle vid,
const bool interp,
int degree,
int minpnts,
const bool safeguard,
const int ncoords,
double* coords,
int* degree_out,
const int ncoeffs,
double* coeffs )
{
ErrorCode error;
int ring = estimate_num_rings( degree, interp );
// get n-ring neighbors
Range ngbvs;
error = obtain_nring_ngbvs( vid, ring, minpnts, ngbvs );MB_CHK_ERR( error );
// get coordinates
size_t nverts = ngbvs.size();
assert( nverts );
double* ngbcoords = new double[nverts * 3];
error = mbImpl->get_coords( ngbvs, ngbcoords );MB_CHK_ERR( error );
// get tangent vectors
double* ngbtangs = new double[nverts * 3];
error = get_tangents_curve( ngbvs, ngbtangs );MB_CHK_ERR( error );
// switch vid to first one
int index = ngbvs.index( vid );
assert( index != -1 );
std::swap( ngbcoords[0], ngbcoords[3 * index] );
std::swap( ngbcoords[1], ngbcoords[3 * index + 1] );
std::swap( ngbcoords[2], ngbcoords[3 * index + 2] );
std::swap( ngbtangs[0], ngbtangs[3 * index] );
std::swap( ngbtangs[1], ngbtangs[3 * index + 1] );
std::swap( ngbtangs[2], ngbtangs[3 * index + 2] );
// local WLS fittings
polyfit3d_curve_get_coeff( nverts, ngbcoords, ngbtangs, degree, interp, safeguard, ncoords, coords, ncoeffs, coeffs,
degree_out );
delete[] ngbcoords;
delete[] ngbtangs;
return error;
}
/**************************************************************
* User Interface for Evaluation via Reconstructed Geometry *
**************************************************************/
ErrorCode HiReconstruction::hiproj_walf_in_element( EntityHandle elem,
const int nvpe,
const int npts2fit,
const double* naturalcoords2fit,
double* newcoords )
{
assert( newcoords );
ErrorCode error;
// get connectivity table
std::vector< EntityHandle > elemconn;
error = mbImpl->get_connectivity( &elem, 1, elemconn );MB_CHK_ERR( error );
if( nvpe != (int)elemconn.size() )
{
MB_SET_ERR( MB_FAILURE, "element connectivity table size doesn't match input size" );
}
if( !_hasfittings )
{
MB_SET_ERR( MB_FAILURE, "There is no existing fitting results" );
}
else
{
std::ostringstream convert;
convert << elem;
std::string ID = convert.str();
for( int i = 0; i < nvpe; ++i )
{
if( -1 == _verts2rec.index( elemconn[i] ) )
{
MB_SET_ERR( MB_FAILURE, "There is no existing fitting results for element " + ID );
}
}
}
// check correctness of input
for( int i = 0; i < npts2fit; ++i )
{
if( !check_barycentric_coords( nvpe, naturalcoords2fit + i * nvpe ) )
{
MB_SET_ERR( MB_FAILURE, "Wrong barycentric coordinates" );
}
}
double* elemcoords = new double[nvpe * 3];
error = mbImpl->get_coords( &( elemconn[0] ), nvpe, elemcoords );MB_CHK_ERR( error );
double* coords2fit = new double[3 * npts2fit]();
for( int i = 0; i < npts2fit; ++i )
{
for( int j = 0; j < nvpe; ++j )
{
coords2fit[3 * i] += naturalcoords2fit[i * nvpe + j] * elemcoords[3 * j];
coords2fit[3 * i + 1] += naturalcoords2fit[i * nvpe + j] * elemcoords[3 * j + 1];
coords2fit[3 * i + 2] += naturalcoords2fit[i * nvpe + j] * elemcoords[3 * j + 2];
}
}
double* hiproj_new = new double[3 * npts2fit];
// initialize output
for( int i = 0; i < npts2fit; ++i )
{
newcoords[3 * i] = newcoords[3 * i + 1] = newcoords[3 * i + 2] = 0;
}
// for each input vertex, call nvpe fittings and take average
for( int j = 0; j < nvpe; ++j )
{
error = hiproj_walf_around_vertex( elemconn[j], npts2fit, coords2fit, hiproj_new );MB_CHK_ERR( error );
for( int i = 0; i < npts2fit; ++i )
{
newcoords[3 * i] += naturalcoords2fit[i * nvpe + j] * hiproj_new[3 * i];
newcoords[3 * i + 1] += naturalcoords2fit[i * nvpe + j] * hiproj_new[3 * i + 1];
newcoords[3 * i + 2] += naturalcoords2fit[i * nvpe + j] * hiproj_new[3 * i + 2];
}
}
delete[] elemcoords;
delete[] coords2fit;
delete[] hiproj_new;
return error;
}
ErrorCode HiReconstruction::hiproj_walf_around_vertex( EntityHandle vid,
const int npts2fit,
const double* coords2fit,
double* hiproj_new )
{
if( !_hasfittings )
{
MB_SET_ERR( MB_FAILURE, "There is no existing fitting results" );
}
else if( -1 == _verts2rec.index( vid ) )
{
std::ostringstream convert;
convert << vid;
std::string VID = convert.str();
MB_SET_ERR( MB_FAILURE, "There is no existing fitting results for vertex " + VID );
}
ErrorCode error;
// get center of local coordinates system
double local_origin[3];
error = mbImpl->get_coords( &vid, 1, local_origin );MB_CHK_ERR( error );
// get local fitting parameters
int index = _verts2rec.index( vid );
bool interp = _interps[index];
int local_deg = _degrees_out[index];
double *uvw_coords, *local_coeffs;
if( _geom == HISURFACE )
{
uvw_coords = &( _local_coords[9 * index] );
// int ncoeffs = (local_deg+2)*(local_deg+1)>>1;
size_t istr = _vertID2coeffID[index];
local_coeffs = &( _local_fit_coeffs[istr] );
walf3d_surf_vertex_eval( local_origin, uvw_coords, local_deg, local_coeffs, interp, npts2fit, coords2fit,
hiproj_new );
}
else if( _geom == HI3DCURVE )
{
uvw_coords = &( _local_coords[3 * index] );
size_t istr = _vertID2coeffID[index];
local_coeffs = &( _local_fit_coeffs[istr] );
walf3d_curve_vertex_eval( local_origin, uvw_coords, local_deg, local_coeffs, interp, npts2fit, coords2fit,
hiproj_new );
}
return error;
}
void HiReconstruction::walf3d_surf_vertex_eval( const double* local_origin,
const double* local_coords,
const int local_deg,
const double* local_coeffs,
const bool interp,
const int npts2fit,
const double* coords2fit,
double* hiproj_new )
{
double xaxis[3], yaxis[3], zaxis[3];
for( int i = 0; i < 3; ++i )
{
xaxis[i] = local_coords[i];
yaxis[i] = local_coords[3 + i];
zaxis[i] = local_coords[6 + i];
}
// double *basis = new double[(local_deg+2)*(local_deg+1)/2-1];
std::vector< double > basis( ( local_deg + 2 ) * ( local_deg + 1 ) / 2 - 1 );
for( int i = 0; i < npts2fit; ++i )
{
double local_pos[3];
for( int j = 0; j < 3; ++j )
{
local_pos[j] = coords2fit[3 * i + j] - local_origin[j];
}
double u, v, height = 0;
u = DGMSolver::vec_innerprod( 3, local_pos, xaxis );
v = DGMSolver::vec_innerprod( 3, local_pos, yaxis );
basis[0] = u;
basis[1] = v;
int l = 1;
for( int k = 2; k <= local_deg; ++k )
{
++l;
basis[l] = u * basis[l - k];
for( int id = 0; id < k; ++id )
{
++l;
basis[l] = basis[l - k - 1] * v;
}
}
if( !interp )
{
height = local_coeffs[0];
}
for( int p = 0; p <= l; ++p )
{
height += local_coeffs[p + 1] * basis[p];
}
hiproj_new[3 * i] = local_origin[0] + u * xaxis[0] + v * yaxis[0] + height * zaxis[0];
hiproj_new[3 * i + 1] = local_origin[1] + u * xaxis[1] + v * yaxis[1] + height * zaxis[1];
hiproj_new[3 * i + 2] = local_origin[2] + u * xaxis[2] + v * yaxis[2] + height * zaxis[2];
}
// delete [] basis;
}
void HiReconstruction::walf3d_curve_vertex_eval( const double* local_origin,
const double* local_coords,
const int local_deg,
const double* local_coeffs,
const bool interp,
const int npts2fit,
const double* coords2fit,
double* hiproj_new )
{
assert( local_origin && local_coords && local_coeffs );
int ncoeffspvpd = local_deg + 1;
for( int i = 0; i < npts2fit; ++i )
{
// get the vector from center to current point, project to tangent line
double vec[3], ans[3] = { 0, 0, 0 };
DGMSolver::vec_linear_operation( 3, 1, coords2fit + 3 * i, -1, local_origin, vec );
double u = DGMSolver::vec_innerprod( 3, local_coords, vec );
// evaluate polynomials
if( !interp )
{
ans[0] = local_coeffs[0];
ans[1] = local_coeffs[ncoeffspvpd];
ans[2] = local_coeffs[2 * ncoeffspvpd];
}
double uk = 1; // degree_out and degree different, stored in columnwise contiguously
for( int j = 1; j < ncoeffspvpd; ++j )
{
uk *= u;
ans[0] += uk * local_coeffs[j];
ans[1] += uk * local_coeffs[j + ncoeffspvpd];
ans[2] += uk * local_coeffs[j + 2 * ncoeffspvpd];
}
hiproj_new[3 * i] = ans[0] + local_origin[0];
hiproj_new[3 * i + 1] = ans[1] + local_origin[1];
hiproj_new[3 * i + 2] = ans[2] + local_origin[2];
}
}
bool HiReconstruction::get_fittings_data( EntityHandle vid,
GEOMTYPE& geomtype,
std::vector< double >& coords,
int& degree_out,
std::vector< double >& coeffs,
bool& interp )
{
if( !_hasfittings )
{
return false;
}
else
{
int index = _verts2rec.index( vid );
if( -1 == index )
{
std::cout << "Input vertex is not locally hosted vertex in this mesh set" << std::endl;
return false;
}
geomtype = _geom;
if( HISURFACE == _geom )
{
coords.insert( coords.end(), _local_coords.begin() + 9 * index, _local_coords.begin() + 9 * index + 9 );
degree_out = _degrees_out[index];
interp = _interps[index];
int ncoeffs = ( degree_out + 2 ) * ( degree_out + 1 ) >> 1;
size_t istr = _vertID2coeffID[index];
coeffs.insert( coeffs.end(), _local_fit_coeffs.begin() + istr, _local_fit_coeffs.begin() + istr + ncoeffs );
}
else if( HI3DCURVE == _geom )
{
coords.insert( coords.end(), _local_coords.begin() + 3 * index, _local_coords.begin() + 3 * index + 3 );
degree_out = _degrees_out[index];
interp = _interps[index];
int ncoeffs = 3 * ( degree_out + 1 );
size_t istr = _vertID2coeffID[index];
coeffs.insert( coeffs.end(), _local_fit_coeffs.begin() + istr, _local_fit_coeffs.begin() + istr + ncoeffs );
}
return true;
}
}
/****************************************************************
* Basic Internal Routines to initialize and set fitting data *
****************************************************************/
int HiReconstruction::estimate_num_rings( int degree, bool interp )
{
return interp ? ( ( degree + 1 ) >> 1 ) + ( ( degree + 1 ) & 1 ) : ( ( degree + 2 ) >> 1 ) + ( ( degree + 2 ) & 1 );
}
ErrorCode HiReconstruction::vertex_get_incident_elements( const EntityHandle& vid,
const int elemdim,
std::vector< EntityHandle >& adjents )
{
ErrorCode error;
assert( elemdim == _dim );
#ifdef HIREC_USE_AHF
error = ahf->get_up_adjacencies( vid, elemdim, adjents );MB_CHK_ERR( error );
#else
error = mbImpl->get_adjacencies( &vid, 1, elemdim, false, adjents );MB_CHK_ERR( error );
#endif
return error;
}
ErrorCode HiReconstruction::obtain_nring_ngbvs( const EntityHandle vid, int ring, const int minpnts, Range& ngbvs )
{
ErrorCode error;
std::deque< EntityHandle > todo;
todo.push_back( vid );
ngbvs.insert( vid );
EntityHandle pre, nxt;
for( int i = 1; i <= ring; ++i )
{
int count = todo.size();
while( count )
{
EntityHandle center = todo.front();
todo.pop_front();
--count;
std::vector< EntityHandle > adjents;
error = vertex_get_incident_elements( center, _dim, adjents );MB_CHK_ERR( error );
for( size_t j = 0; j < adjents.size(); ++j )
{
std::vector< EntityHandle > elemconn;
error = mbImpl->get_connectivity( &adjents[j], 1, elemconn );MB_CHK_ERR( error );
int nvpe = elemconn.size();
for( int k = 0; k < nvpe; ++k )
{
if( elemconn[k] == center )
{
pre = k == 0 ? elemconn[nvpe - 1] : elemconn[k - 1];
nxt = elemconn[( k + 1 ) % nvpe];
if( ngbvs.find( pre ) == ngbvs.end() )
{
ngbvs.insert( pre );
todo.push_back( pre );
}
if( ngbvs.find( nxt ) == ngbvs.end() )
{
ngbvs.insert( nxt );
todo.push_back( nxt );
}
break;
}
}
}
}
if( _MAXPNTS <= (int)ngbvs.size() )
{
// obtain enough points
return error;
}
if( !todo.size() )
{
// current ring cannot introduce any points, return incase deadlock
return error;
}
if( ( i == ring ) && ( minpnts > (int)ngbvs.size() ) )
{
// reach maximum ring but not enough points
++ring;
}
}
return error;
}
void HiReconstruction::initialize_surf_geom( const int degree )
{
if( !_hasderiv )
{
compute_average_vertex_normals_surf();
_hasderiv = true;
}
if( !_initfittings )
{
int ncoeffspv = ( degree + 2 ) * ( degree + 1 ) / 2;
_degrees_out.assign( _nv2rec, 0 );
_interps.assign( _nv2rec, false );
_vertID2coeffID.resize( _nv2rec );
_local_fit_coeffs.assign( _nv2rec * ncoeffspv, 0 );
for( size_t i = 0; i < _nv2rec; ++i )
{
_vertID2coeffID[i] = i * ncoeffspv;
}
_initfittings = true;
}
}
void HiReconstruction::initialize_surf_geom( const size_t npts, const int* degrees )
{
if( !_hasderiv )
{
compute_average_vertex_normals_surf();
_hasderiv = true;
}
if( !_initfittings )
{
assert( _nv2rec == npts );
_degrees_out.assign( _nv2rec, 0 );
_interps.assign( _nv2rec, false );
_vertID2coeffID.resize( _nv2rec );
size_t index = 0;
for( size_t i = 0; i < _nv2rec; ++i )
{
_vertID2coeffID[i] = index;
index += ( degrees[i] + 2 ) * ( degrees[i] + 1 ) / 2;
}
_local_fit_coeffs.assign( index, 0 );
_initfittings = true;
}
}
void HiReconstruction::initialize_3Dcurve_geom( const int degree )
{
if( !_hasderiv )
{
compute_average_vertex_tangents_curve();
_hasderiv = true;
}
if( !_initfittings )
{
int ncoeffspvpd = degree + 1;
_degrees_out.assign( _nv2rec, 0 );
_interps.assign( _nv2rec, false );
_vertID2coeffID.resize( _nv2rec );
_local_fit_coeffs.assign( _nv2rec * ncoeffspvpd * 3, 0 );
for( size_t i = 0; i < _nv2rec; ++i )
{
_vertID2coeffID[i] = i * ncoeffspvpd * 3;
}
_initfittings = true;
}
}
void HiReconstruction::initialize_3Dcurve_geom( const size_t npts, const int* degrees )
{
if( !_hasderiv )
{
compute_average_vertex_tangents_curve();
_hasderiv = true;
}
if( !_hasfittings )
{
assert( _nv2rec == npts );
_degrees_out.assign( _nv2rec, 0 );
_interps.assign( _nv2rec, false );
_vertID2coeffID.reserve( _nv2rec );
size_t index = 0;
for( size_t i = 0; i < _nv2rec; ++i )
{
_vertID2coeffID[i] = index;
index += 3 * ( degrees[i] + 1 );
}
_local_fit_coeffs.assign( index, 0 );
_initfittings = true;
}
}
/* ErrorCode HiReconstruction::set_geom_data_surf(const EntityHandle vid, const double* coords,
const double degree_out, const double* coeffs, bool interp)
{
return MB_SUCCESS;
}
ErrorCode HiReconstruction::set_geom_data_3Dcurve(const EntityHandle vid, const double* coords,
const double degree_out, const double* coeffs, bool interp)
{
return MB_SUCCESS;
} */
/*********************************************************
* Routines for vertex normal/tangent vector estimation *
*********************************************************/
ErrorCode HiReconstruction::average_vertex_normal( const EntityHandle vid, double* nrm )
{
ErrorCode error;
std::vector< EntityHandle > adjfaces;
error = vertex_get_incident_elements( vid, 2, adjfaces );MB_CHK_ERR( error );
int npolys = adjfaces.size();
if( !npolys )
{
MB_SET_ERR( MB_FAILURE, "Vertex has no incident 2D entities" );
}
else
{
double v1[3], v2[3], v3[3], a[3], b[3], c[3];
nrm[0] = nrm[1] = nrm[2] = 0;
for( int i = 0; i < npolys; ++i )
{
// get incident "triangles"
std::vector< EntityHandle > elemconn;
error = mbImpl->get_connectivity( &adjfaces[i], 1, elemconn );MB_CHK_ERR( error );
EntityHandle pre, nxt;
int nvpe = elemconn.size();
for( int j = 0; j < nvpe; ++j )
{
if( vid == elemconn[j] )
{
pre = j == 0 ? elemconn[nvpe - 1] : elemconn[j - 1];
nxt = elemconn[( j + 1 ) % nvpe];
break;
}
}
// compute area weighted normals
error = mbImpl->get_coords( &pre, 1, a );MB_CHK_ERR( error );
error = mbImpl->get_coords( &vid, 1, b );MB_CHK_ERR( error );
error = mbImpl->get_coords( &nxt, 1, c );MB_CHK_ERR( error );
DGMSolver::vec_linear_operation( 3, 1, c, -1, b, v1 );
DGMSolver::vec_linear_operation( 3, 1, a, -1, b, v2 );
DGMSolver::vec_crossprod( v1, v2, v3 );
DGMSolver::vec_linear_operation( 3, 1, nrm, 1, v3, nrm );
}
#ifndef NDEBUG
assert( DGMSolver::vec_normalize( 3, nrm, nrm ) );
#endif
}
return error;
}
ErrorCode HiReconstruction::compute_average_vertex_normals_surf()
{
if( _hasderiv )
{
return MB_SUCCESS;
}
ErrorCode error;
_local_coords.assign( 9 * _nv2rec, 0 );
size_t index = 0;
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert, ++index )
{
error = average_vertex_normal( *ivert, &( _local_coords[9 * index + 6] ) );MB_CHK_ERR( error );
}
return error;
}
ErrorCode HiReconstruction::get_normals_surf( const Range& vertsh, double* nrms )
{
ErrorCode error = MB_SUCCESS;
if( _hasderiv )
{
size_t id = 0;
for( Range::iterator ivert = vertsh.begin(); ivert != vertsh.end(); ++ivert, ++id )
{
int index = _verts2rec.index( *ivert );
#ifdef MOAB_HAVE_MPI
if( -1 == index )
{
// ghost vertex
error = average_vertex_normal( *ivert, nrms + 3 * id );MB_CHK_ERR( error );
}
else
{
nrms[3 * id] = _local_coords[9 * index + 6];
nrms[3 * id + 1] = _local_coords[9 * index + 7];
nrms[3 * id + 2] = _local_coords[9 * index + 8];
}
#else
assert( -1 != index );
nrms[3 * id] = _local_coords[9 * index + 6];
nrms[3 * id + 1] = _local_coords[9 * index + 7];
nrms[3 * id + 2] = _local_coords[9 * index + 8];
#endif
}
}
else
{
size_t id = 0;
for( Range::iterator ivert = vertsh.begin(); ivert != vertsh.end(); ++ivert, ++id )
{
error = average_vertex_normal( *ivert, nrms + 3 * id );MB_CHK_ERR( error );
}
}
return error;
}
ErrorCode HiReconstruction::average_vertex_tangent( const EntityHandle vid, double* tang )
{
ErrorCode error;
std::vector< EntityHandle > adjedges;
error = vertex_get_incident_elements( vid, 1, adjedges );MB_CHK_ERR( error );
int nedges = adjedges.size();
if( !nedges )
{
MB_SET_ERR( MB_FAILURE, "Vertex has no incident edges" );
}
else
{
assert( nedges <= 2 );
tang[0] = tang[1] = tang[2] = 0;
for( int i = 0; i < nedges; ++i )
{
std::vector< EntityHandle > edgeconn;
error = mbImpl->get_connectivity( &adjedges[i], 1, edgeconn );<--- error is assigned
double istr[3], iend[3], t[3];
error = mbImpl->get_coords( &( edgeconn[0] ), 1, istr );<--- error is overwritten<--- error is assigned
error = mbImpl->get_coords( &( edgeconn[1] ), 1, iend );<--- error is overwritten
DGMSolver::vec_linear_operation( 3, 1, iend, -1, istr, t );
DGMSolver::vec_linear_operation( 3, 1, tang, 1, t, tang );
}
#ifndef NDEBUG
assert( DGMSolver::vec_normalize( 3, tang, tang ) );
#endif
}
return error;
}
ErrorCode HiReconstruction::compute_average_vertex_tangents_curve()
{
if( _hasderiv )
{
return MB_SUCCESS;
}
ErrorCode error;
_local_coords.assign( 3 * _nv2rec, 0 );
size_t index = 0;
for( Range::iterator ivert = _verts2rec.begin(); ivert != _verts2rec.end(); ++ivert, ++index )
{
error = average_vertex_tangent( *ivert, &( _local_coords[3 * index] ) );MB_CHK_ERR( error );
}
return error;
}
ErrorCode HiReconstruction::get_tangents_curve( const Range& vertsh, double* tangs )
{
ErrorCode error = MB_SUCCESS;
if( _hasderiv )
{
size_t id = 0;
for( Range::iterator ivert = vertsh.begin(); ivert != vertsh.end(); ++ivert, ++id )
{
int index = _verts2rec.index( *ivert );
#ifdef MOAB_HAVE_MPI
if( -1 != index )
{
tangs[3 * id] = _local_coords[3 * index];
tangs[3 * id + 1] = _local_coords[3 * index + 1];
tangs[3 * id + 2] = _local_coords[3 * index + 2];
}
else
{
error = average_vertex_tangent( *ivert, tangs + 3 * id );MB_CHK_ERR( error );
}
#else
assert( -1 != index );
tangs[3 * id] = _local_coords[3 * index];
tangs[3 * id + 1] = _local_coords[3 * index + 1];
tangs[3 * id + 2] = _local_coords[3 * index + 2];
#endif
}
}
else
{
size_t id = 0;
for( Range::iterator ivert = vertsh.begin(); ivert != vertsh.end(); ++ivert, ++id )
{
error = average_vertex_tangent( *ivert, tangs + 3 * id );MB_CHK_ERR( error );
}
}
return error;
}
/************************************************
* Internal Routines for local WLS fittings *
*************************************************/
void HiReconstruction::polyfit3d_surf_get_coeff( const int nverts,
const double* ngbcoords,
const double* ngbnrms,
int degree,
const bool interp,
const bool safeguard,
const int ncoords,
double* coords,
const int ncoeffs,
double* coeffs,
int* degree_out,
int* degree_pnt,
int* degree_qr )
{
if( nverts <= 0 )
{
return;
}
// std::cout << "npnts in initial stencil = " << nverts << std::endl;
// std::cout << "centered at (" << ngbcoords[0] << "," << ngbcoords[1] << "," << ngbcoords[2] <<
// ")" << std::endl;
// step 1. copmute local coordinate system
double nrm[3] = { ngbnrms[0], ngbnrms[1], ngbnrms[2] }, tang1[3] = { 0, 0, 0 }, tang2[3] = { 0, 0, 0 };
if( fabs( nrm[0] ) > fabs( nrm[1] ) && fabs( nrm[0] ) > fabs( nrm[2] ) )
{
tang1[1] = 1.0;
}
else
{
tang1[0] = 1.0;
}
DGMSolver::vec_projoff( 3, tang1, nrm, tang1 );
#ifndef NDEBUG
assert( DGMSolver::vec_normalize( 3, tang1, tang1 ) );
#endif
DGMSolver::vec_crossprod( nrm, tang1, tang2 );
if( 9 <= ncoords && coords )
{
coords[0] = tang1[0];
coords[1] = tang1[1];
coords[2] = tang1[2];
coords[3] = tang2[0];
coords[4] = tang2[1];
coords[5] = tang2[2];
coords[6] = nrm[0];
coords[7] = nrm[1];
coords[8] = nrm[2];
}
if( !ncoeffs || !coeffs )
{
return;
}
else
{
assert( ncoeffs >= ( degree + 2 ) * ( degree + 1 ) / 2 );
}
// step 2. project onto local coordinates system
int npts2fit = nverts - interp;
if( 0 == npts2fit )
{
*degree_out = *degree_pnt = *degree_qr = 0;
for( int i = 0; i < ncoeffs; ++i )
{
coeffs[i] = 0;
}
// coeffs[0] = 0;
return;
}
std::vector< double > us( npts2fit * 2 ); // double *us = new double[npts2fit*2];
std::vector< double > bs( npts2fit ); // double *bs = new double[npts2fit];
for( int i = interp; i < nverts; ++i )
{
int k = i - interp;
double uu[3];
DGMSolver::vec_linear_operation( 3, 1, ngbcoords + 3 * i, -1, ngbcoords, uu );
us[k * 2] = DGMSolver::vec_innerprod( 3, tang1, uu );
us[k * 2 + 1] = DGMSolver::vec_innerprod( 3, tang2, uu );
bs[k] = DGMSolver::vec_innerprod( 3, nrm, uu );
}
// step 3. compute weights
std::vector< double > ws( npts2fit ); // double *ws = new double[npts2fit];
int nzeros = compute_weights( npts2fit, 2, &( us[0] ), nverts, ngbnrms, degree, _MINEPS, &( ws[0] ) );
// step 4. adjust according to zero-weights
if( nzeros )
{
if( nzeros == npts2fit )
{
*degree_out = *degree_pnt = *degree_qr = 0;
for( int i = 0; i < ncoeffs; ++i )
{
coeffs[i] = 0;
}
// coeffs[0] = 0;
return;
}
int index = 0;
for( int i = 0; i < npts2fit; ++i )
{
if( ws[i] )
{
if( i > index )
{
us[index * 2] = us[i * 2];
us[index * 2 + 1] = us[i * 2 + 1];
bs[index] = bs[i];
ws[index] = ws[i];
}
++index;
}
}
npts2fit -= nzeros;
assert( index == npts2fit );
us.resize( npts2fit * 2 );
bs.resize( npts2fit );
ws.resize( npts2fit );
/*us = realloc(us,npts2fit*2*sizeof(double));
bs = realloc(bs,npts2fit*sizeof(double));
ws = realloc(ws,npts2fit*sizeof(double));*/
}
// std::cout<<"npnts after weighting = "<<npts2fit<<std::endl;
// step 5. fitting
eval_vander_bivar_cmf( npts2fit, &( us[0] ), 1, &( bs[0] ), degree, &( ws[0] ), interp, safeguard, degree_out,
degree_pnt, degree_qr );
// step 6. organize output
int ncoeffs_out = ( *degree_out + 2 ) * ( *degree_out + 1 ) / 2;
assert( ncoeffs_out <= ncoeffs );
coeffs[0] = 0;
for( int j = 0; j < ncoeffs_out - interp; ++j )
{
coeffs[j + interp] = bs[j];
}
// delete [] us; delete [] bs; delete [] ws;
}
void HiReconstruction::eval_vander_bivar_cmf( const int npts2fit,
const double* us,
const int ndim,
double* bs,
int degree,
const double* ws,
const bool interp,
const bool safeguard,
int* degree_out,
int* degree_pnt,
int* degree_qr )
{
// step 1. adjust the degree according to number of points to fit
int ncols = ( ( ( degree + 2 ) * ( degree + 1 ) ) >> 1 ) - interp;
while( 1 < degree && npts2fit < ncols )
{
--degree;
ncols = ( ( ( degree + 2 ) * ( degree + 1 ) ) >> 1 ) - interp;
}
*degree_pnt = degree;
// std::cout << "degree_pnt: " << *degree_pnt << std::endl;
// step 2. construct Vandermonde matrix, stored in columnwise
std::vector< double > V; // V(npts2fit*(ncols+interp)); //double *V_init = new double[npts2fit*(ncols+interp)];
DGMSolver::gen_vander_multivar( npts2fit, 2, us, degree, V );
// remove the first column of 1s if interpolation
if( interp )
{
V.erase( V.begin(), V.begin() + npts2fit );
}
/*double* V;
if(interp){
V = new double[npts2fit*ncols];
std::memcpy(V,V_init+npts2fit,ncols*npts2fit*sizeof(double));
delete [] V_init; V_init = 0;
}else{
V = V_init;
}*/
// step 3. Scale rows to assign different weights to different points
for( int i = 0; i < npts2fit; ++i )
{
for( int j = 0; j < ncols; ++j )
{
V[j * npts2fit + i] *= ws[i];
}
for( int k = 0; k < ndim; ++k )
{
bs[k * npts2fit + i] *= ws[i];
}
}
// step 4. scale columns to reduce condition number
std::vector< double > ts( ncols ); // double *ts = new double[ncols];
DGMSolver::rescale_matrix( npts2fit, ncols, &( V[0] ), &( ts[0] ) );
// step 5. Perform Householder QR factorization
std::vector< double > D( ncols ); // double *D = new double[ncols];
int rank;
DGMSolver::qr_polyfit_safeguarded( npts2fit, ncols, &( V[0] ), &( D[0] ), &rank );
// step 6. adjust degree of fitting according to rank of Vandermonde matrix
int ncols_sub = ncols;
while( rank < ncols_sub )
{
--degree;
if( degree == 0 )
{
// surface is flat, return 0
*degree_out = *degree_qr = degree;
for( int i = 0; i < npts2fit; ++i )
{
for( int k = 0; k < ndim; ++k )
{
bs[k * npts2fit + i] = 0;
}
}
return;
}
else
{
ncols_sub = ( ( ( degree + 2 ) * ( degree + 1 ) ) >> 1 ) - interp;
}
}
*degree_qr = degree;
// std::cout << "degree_qr: " << *degree_qr << std::endl;
/* DBG
* std::cout<<"before Qtb"<<std::endl;
std::cout<<std::endl;
std::cout<<"bs = "<<std::endl;
std::cout<<std::endl;
for (int k=0; k< ndim; k++){
for (int j=0; j<npts2fit; ++j){
std::cout<<" "<<bs[npts2fit*k+j]<<std::endl;
}
}
std::cout<<std::endl;*/
// step 7. compute Q'b
DGMSolver::compute_qtransposeB( npts2fit, ncols_sub, &( V[0] ), ndim, bs );
/* DBG
* std::cout<<"after Qtb"<<std::endl;
std::cout<<"bs = "<<std::endl;
std::cout<<std::endl;
for (int k=0; k< ndim; k++){
for (int j=0; j<npts2fit; ++j){
std::cout<<" "<<bs[npts2fit*k+j]<<std::endl;
}
}
std::cout<<std::endl;*/
// step 8. perform backward substitution and scale the solution
// assign diagonals of V
for( int i = 0; i < ncols_sub; ++i )
{
V[i * npts2fit + i] = D[i];
}
// backsolve
if( safeguard )
{
// for debug
// std::cout << "ts size " << ts.size() << std::endl;
DGMSolver::backsolve_polyfit_safeguarded( 2, degree, interp, npts2fit, ncols_sub, &( V[0] ), ndim, bs,
&( ts[0] ), degree_out );
}
else
{
DGMSolver::backsolve( npts2fit, ncols_sub, &( V[0] ), 1, bs, &( ts[0] ) );
*degree_out = degree;
}
/*if(V_init){
delete [] V_init;
}else{
delete [] V;
}*/
}
void HiReconstruction::polyfit3d_curve_get_coeff( const int nverts,
const double* ngbcors,
const double* ngbtangs,
int degree,
const bool interp,
const bool safeguard,
const int ncoords,
double* coords,
const int ncoeffs,
double* coeffs,
int* degree_out )
{
if( !nverts )
{
return;
}
// step 1. compute local coordinates system
double tang[3] = { ngbtangs[0], ngbtangs[1], ngbtangs[2] };
if( coords && ncoords > 2 )
{
coords[0] = tang[0];
coords[1] = tang[1];
coords[2] = tang[2];
}
if( !coeffs || !ncoeffs )
{
return;
}
else
{
assert( ncoeffs >= 3 * ( degree + 1 ) );
}
// step 2. project onto local coordinate system
int npts2fit = nverts - interp;
if( !npts2fit )
{
*degree_out = 0;
for( int i = 0; i < ncoeffs; ++i )
{
coeffs[0] = 0;
}
return;
}
std::vector< double > us( npts2fit ); // double *us = new double[npts2fit];
std::vector< double > bs( npts2fit * 3 ); // double *bs = new double[npts2fit*3];
double uu[3];
for( int i = interp; i < nverts; ++i )
{
int k = i - interp;
DGMSolver::vec_linear_operation( 3, 1, ngbcors + 3 * i, -1, ngbcors, uu );
us[k] = DGMSolver::vec_innerprod( 3, uu, tang );
bs[k] = uu[0];
bs[npts2fit + k] = uu[1];
bs[2 * npts2fit + k] = uu[2];
}
// step 3. copmute weights
std::vector< double > ws( npts2fit );
int nzeros = compute_weights( npts2fit, 1, &( us[0] ), nverts, ngbtangs, degree, _MINEPS, &( ws[0] ) );
assert( nzeros <= npts2fit );
// step 4. adjust according to number of zero-weights
if( nzeros )
{
if( nzeros == npts2fit )
{
// singular case
*degree_out = 0;
for( int i = 0; i < ncoeffs; ++i )
{
coeffs[i] = 0;
}
return;
}
int npts_new = npts2fit - nzeros;
std::vector< double > bs_temp( 3 * npts_new );
int index = 0;
for( int i = 0; i < npts2fit; ++i )
{
if( ws[i] )
{
if( i > index )
{
us[index] = us[i];
ws[index] = ws[i];
}
bs_temp[index] = bs[i];
bs_temp[index + npts_new] = bs[i + npts2fit];
bs_temp[index + 2 * npts_new] = bs[i + 2 * npts2fit];
++index;
}
}
assert( index == npts_new );
npts2fit = npts_new;
us.resize( index );
ws.resize( index );
bs = bs_temp;
// destroy bs_temp;
std::vector< double >().swap( bs_temp );
}
// step 5. fitting
eval_vander_univar_cmf( npts2fit, &( us[0] ), 3, &( bs[0] ), degree, &( ws[0] ), interp, safeguard, degree_out );
// step 6. write results to output pointers
int ncoeffs_out_pvpd = *degree_out + 1;
assert( ncoeffs >= 3 * ncoeffs_out_pvpd );
// write to coeffs consecutively, bs's size is not changed by eval_vander_univar_cmf
coeffs[0] = coeffs[ncoeffs_out_pvpd] = coeffs[2 * ncoeffs_out_pvpd] = 0;
for( int i = 0; i < ncoeffs_out_pvpd - interp; ++i )
{
coeffs[i + interp] = bs[i];
coeffs[i + interp + ncoeffs_out_pvpd] = bs[i + npts2fit];
coeffs[i + interp + 2 * ncoeffs_out_pvpd] = bs[i + 2 * npts2fit];
}
}
void HiReconstruction::eval_vander_univar_cmf( const int npts2fit,
const double* us,
const int ndim,
double* bs,
int degree,
const double* ws,
const bool interp,
const bool safeguard,
int* degree_out )
{
// step 1. determine degree of polynomials to fit according to number of points
int ncols = degree + 1 - interp;
while( npts2fit < ncols && degree >= 1 )
{
--degree;
ncols = degree + 1 - interp;
}
if( !degree )
{
if( interp )
{
for( int icol = 0; icol < ndim; ++icol )
{
bs[icol * npts2fit] = 0;
}
}
for( int irow = 1; irow < npts2fit; ++irow )
{
for( int icol = 0; icol < ndim; ++icol )
{
bs[icol * npts2fit + irow] = 0;
}
}
*degree_out = 0;
return;
}
// step 2. construct Vandermonde matrix
std::vector< double > V; // V(npts2fit*(ncols+interp));
DGMSolver::gen_vander_multivar( npts2fit, 1, us, degree, V );
if( interp )
{
V.erase( V.begin(), V.begin() + npts2fit );
}
// step 3. scale rows with respect to weights
for( int i = 0; i < npts2fit; ++i )
{
for( int j = 0; j < ncols; ++j )
{
V[j * npts2fit + i] *= ws[i];
}
for( int k = 0; k < ndim; ++k )
{
bs[k * npts2fit + i] *= ws[i];
}
}
// step 4. scale columns to reduce condition number
std::vector< double > ts( ncols );
DGMSolver::rescale_matrix( npts2fit, ncols, &( V[0] ), &( ts[0] ) );
// step 5. perform Householder QR factorization
std::vector< double > D( ncols );
int rank;
DGMSolver::qr_polyfit_safeguarded( npts2fit, ncols, &( V[0] ), &( D[0] ), &rank );
// step 6. adjust degree of fitting
int ncols_sub = ncols;
while( rank < ncols_sub )
{
--degree;
if( !degree )
{
// matrix is singular, consider curve on flat plane passing center and orthogonal to
// tangent line
*degree_out = 0;
for( int i = 0; i < npts2fit; ++i )
{
for( int k = 0; k < ndim; ++k )
{
bs[k * npts2fit + i] = 0;
}
}
}
ncols_sub = degree + 1 - interp;
}
// step 7. compute Q'*bs
DGMSolver::compute_qtransposeB( npts2fit, ncols_sub, &( V[0] ), ndim, bs );
// step 8. perform backward substitution and scale solutions
// assign diagonals of V
for( int i = 0; i < ncols_sub; ++i )
{
V[i * npts2fit + i] = D[i];
}
// backsolve
if( safeguard )
{
DGMSolver::backsolve_polyfit_safeguarded( 1, degree, interp, npts2fit, ncols, &( V[0] ), ndim, bs, ws,
degree_out );
}
else
{
DGMSolver::backsolve( npts2fit, ncols_sub, &( V[0] ), ndim, bs, &( ts[0] ) );
*degree_out = degree;
}
}
int HiReconstruction::compute_weights( const int nrows,
const int ncols,
const double* us,
const int nngbs,
const double* ngbnrms,
const int degree,
const double toler,
double* ws )
{
assert( nrows <= _MAXPNTS && ws );
bool interp = false;
if( nngbs != nrows )
{
assert( nngbs == nrows + 1 );
interp = true;
}
double epsilon = 1e-2;
// First, compute squared distance from each input piont to the center
for( int i = 0; i < nrows; ++i )
{
ws[i] = DGMSolver::vec_innerprod( ncols, us + i * ncols, us + i * ncols );
}
// Second, compute a small correction termt o guard against zero
double h = 0;
for( int i = 0; i < nrows; ++i )
{
h += ws[i];
}
h /= (double)nrows;
// Finally, compute the weights for each vertex
int nzeros = 0;
for( int i = 0; i < nrows; ++i )
{
double costheta = DGMSolver::vec_innerprod( 3, ngbnrms, ngbnrms + 3 * ( i + interp ) );
if( costheta > toler )
{
ws[i] = costheta * pow( ws[i] / h + epsilon, -1 * (double)degree / 2.0 );
}
else
{
ws[i] = 0;
++nzeros;
}
}
return nzeros;
}
bool HiReconstruction::check_barycentric_coords( const int nws, const double* naturalcoords )
{
double sum = 0;
for( int i = 0; i < nws; ++i )
{
if( naturalcoords[i] < -_MINEPS )
{
return false;
}
sum += naturalcoords[i];
}
if( fabs( 1 - sum ) > _MINEPS )
{
return false;
}
else
{
return true;
}
}
} // namespace moab
|