-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpectusprocessor.cpp
1493 lines (1305 loc) · 52 KB
/
pectusprocessor.cpp
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
#include "pectusprocessor.h"
#include <QFile>
#include <limits>
#include <cmath>
#include <QtMath>
const int CANVAS_DRAWING_FACTOR = 750;
const int AREA_FACTOR = 1000;
PectusProcessor::PectusProcessor(QObject *parent) : QObject(parent), m_fileName(""), vertices(), faces(){
}
void PectusProcessor::setFileName(const QString & filename){
#if defined(Q_OS_WIN)
QString newname = filename.right(filename.size() - 8);//removes file:///
#else
QString newname = filename.right(filename.size() - 7);
#endif
m_fileName = newname;
processFile();
}
void PectusProcessor::processFile(){
QFile inputFile(m_fileName);
if (inputFile.open(QIODevice::ReadOnly))
{
// Clear out values from previous file
vertices.clear();
normals.clear();
textures.clear();
faces.clear();
QTextStream in(&inputFile);
while (!in.atEnd())
{
QString line = in.readLine();
QStringList parts = line.split(" ");
if(parts[0] == "v"){
double x = parts[1].toDouble(), y = parts[2].toDouble(), z = parts[3].toDouble();
Vertex v(x, y, z);
if (y < miny) {
miny = y;
} if (y > maxy) {
maxy = y;
}
vertices.push_back(v);
}
else if(parts[0] == "vt"){
Texture v(parts[1].toDouble(), parts[2].toDouble());
textures.push_back(v);
}
else if(parts[0] == "vn"){
Vertex v(parts[1].toDouble(), parts[2].toDouble(), parts[3].toDouble());
normals.push_back(v);
}
else if(parts[0] == "f"){
Face v(parts[1], parts[2], parts[3]);
v.vertex1Index = v.vertex1String.split("/")[0].toInt() - 1;
v.vertex2Index = v.vertex2String.split("/")[0].toInt() - 1;
v.vertex3Index = v.vertex3String.split("/")[0].toInt() - 1;
faces.push_back(v);
}
}
inputFile.close();
}
else{
qDebug() << QString("Not open");
}
}
void PectusProcessor::setRootQmlObject(QObject *obj)
{
rootQmlObject = obj;
}
//from http://www.geeksforgeeks.org/program-for-point-of-intersection-of-two-lines/
Vertex lineIntersection(Vertex A, Vertex B, Vertex C, Vertex D){
double a1 = B.z - A.z;
double b1 = A.x - B.x;
double c1 = a1*(A.x) + b1*(A.z);
double a2 = D.z - C.z;
double b2 = C.x - D.x;
double c2 = a2*(C.x)+ b2*(C.z);
double determinant = a1*b2 - a2*b1;
return Vertex((b2*c1 - b1*c2)/determinant, 0 ,(a1*c2 - a2*c1)/determinant);
}
void PectusProcessor::drawLineSegments()
{
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
double midpoint = (minx.x + maxx.x) / 2;
Vertex v1, v2;//v1 and v2 will be two vertices that have the same x value (+- .01)
//as the midpoint of the horizontal distance, one will be at top of chest, one at bottom
for (int i = 0; i < sliceSegments.size(); i++) {
if((sliceSegments[i].first.x < midpoint && sliceSegments[i].first.x + .005 > midpoint) ||
(sliceSegments[i].first.x > midpoint && sliceSegments[i].first.x - .005 < midpoint)){
if(v1.x != 0)
v2 = sliceSegments[i].first;
else v1 = sliceSegments[i].first;
}
}
double rotationAngle = qAtan((maxx.z - minx.z) / (maxx.x - minx.x)); // slope of "horizontal" diameter
Vertex centerOfSlice = lineIntersection(minx, maxx, v1, v2);
minx.x = std::numeric_limits<double>::max();
maxx.x = std::numeric_limits<double>::min();
for (int i = 0; i < sliceSegments.size(); i++) {
sliceSegments[i].first.x = qCos(rotationAngle) * (sliceSegments[i].first.x - centerOfSlice.x) + qSin(rotationAngle) * (sliceSegments[i].first.z - centerOfSlice.z) + centerOfSlice.x;
sliceSegments[i].first.z = -qSin(rotationAngle) * (sliceSegments[i].first.x - centerOfSlice.x) + qCos(rotationAngle) * (sliceSegments[i].first.z - centerOfSlice.z) + centerOfSlice.z;
sliceSegments[i].second.x = qCos(rotationAngle) * (sliceSegments[i].second.x - centerOfSlice.x) + qSin(rotationAngle) * (sliceSegments[i].second.z - centerOfSlice.z) + centerOfSlice.x;
sliceSegments[i].second.z = -qSin(rotationAngle) * (sliceSegments[i].second.x - centerOfSlice.x) + qCos(rotationAngle) * (sliceSegments[i].second.z - centerOfSlice.z) + centerOfSlice.z;
if (sliceSegments[i].first.x < minx.x) {
minx = sliceSegments[i].first;
} if (sliceSegments[i].first.x > maxx.x) {
maxx = sliceSegments[i].first;
}
if (sliceSegments[i].second.x < minx.x) {
minx = sliceSegments[i].second;
} if (sliceSegments[i].first.x > maxx.x) {
maxx = sliceSegments[i].second;
}
if (sliceSegments[i].first.x > 1.0 || sliceSegments[i].first.y > 1.0 || sliceSegments[i].second.x > 1.0 || sliceSegments[i].second.y > 1.0) {
qDebug() << "Vertex value greater than 1: " << sliceSegments[i].first.x << sliceSegments[i].first.y << sliceSegments[i].second.x << sliceSegments[i].second.y;
}
QMetaObject::invokeMethod(canvas, "drawLine",
Q_ARG(QVariant, sliceSegments[i].first.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, sliceSegments[i].first.z*CANVAS_DRAWING_FACTOR),
Q_ARG(QVariant, sliceSegments[i].second.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, sliceSegments[i].second.z*CANVAS_DRAWING_FACTOR));
}
disableAllIndexVisibilities();
}
void PectusProcessor::drawLineSegmentsWithoutRotation()
{
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
double midpoint = (minx.x + maxx.x) / 2;
Vertex v1, v2;//v1 and v2 will be two vertices that have the same x value (+- .01)
//as the midpoint of the horizontal distance, one will be at top of chest, one at bottom
for (int i = 0; i < sliceSegments.size(); i++) {
if((sliceSegments[i].first.x < midpoint && sliceSegments[i].first.x + .005 > midpoint) ||
(sliceSegments[i].first.x > midpoint && sliceSegments[i].first.x - .005 < midpoint)){
if(v1.x != 0)
v2 = sliceSegments[i].first;
else v1 = sliceSegments[i].first;
}
}
minx.x = std::numeric_limits<double>::max();
maxx.x = std::numeric_limits<double>::min();
for (int i = 0; i < sliceSegments.size(); i++) {
if (sliceSegments[i].first.x < minx.x) {
minx = sliceSegments[i].first;
} if (sliceSegments[i].first.x > maxx.x) {
maxx = sliceSegments[i].first;
}
if (sliceSegments[i].second.x < minx.x) {
minx = sliceSegments[i].second;
} if (sliceSegments[i].first.x > maxx.x) {
maxx = sliceSegments[i].second;
}
if (sliceSegments[i].first.x > 1.0 || sliceSegments[i].first.y > 1.0 || sliceSegments[i].second.x > 1.0 || sliceSegments[i].second.y > 1.0) {
qDebug() << "Vertex value greater than 1: " << sliceSegments[i].first.x << sliceSegments[i].first.y << sliceSegments[i].second.x << sliceSegments[i].second.y;
}
QMetaObject::invokeMethod(canvas, "drawLine",
Q_ARG(QVariant, sliceSegments[i].first.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, sliceSegments[i].first.z*CANVAS_DRAWING_FACTOR),
Q_ARG(QVariant, sliceSegments[i].second.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, sliceSegments[i].second.z*CANVAS_DRAWING_FACTOR));
}
disableAllIndexVisibilities();
}
void PectusProcessor::disableAllIndexVisibilities(){
hallerIndexVisible = false;
asymmetricIndexVisible = false;
volumeDefectIndexVisible = false;
emit volumeDefectIndexVisibleChanged(false);
emit asymmetricIndexVisibleChanged(false);
emit hallerIndexVisibleChanged(false);
}
QString PectusProcessor::getFileName(){
return m_fileName;
}
void PectusProcessor::calculateIntersection(double yPlane){
lastYPlane = yPlane;
QVector<Face> intersectedFaces;
sliceSegments.clear();
rightArmRemoved = false;
leftArmRemoved = false;
for(int i = 0; i < faces.size(); i++){
bool above = false, below = false;
int on = 0; //Still intersects if 2 points are on the plane (3 shouldn't happen)
Vertex v1 = vertices[faces[i].vertex1Index];
Vertex v2 = vertices[faces[i].vertex2Index];
Vertex v3 = vertices[faces[i].vertex3Index];
if(v1.y > yPlane || v2.y > yPlane || v3.y > yPlane)
above = true;
if(v1.y < yPlane || v2.y < yPlane || v3.y < yPlane)
below = true;
if(v1.y == yPlane)
on++;
if(v2.y == yPlane)
on++;
if(v3.y == yPlane)
on++;
if((above && below) || on == 2){
intersectedFaces.push_back(faces[i]);
}
}
minx.x = std::numeric_limits<double>::max();
minz.z = std::numeric_limits<double>::max();
maxx.x = std::numeric_limits<double>::min();
maxz.z = std::numeric_limits<double>::min();
//need to find intersection on each face now
for (int i = 0; i < intersectedFaces.size(); i++){
QPair<Vertex, Vertex> segment = findSegment(intersectedFaces[i], yPlane);
sliceSegments.push_back(segment);
}
if (sliceSegments.isEmpty())
return;
setLimits();
sliceSegments = findLargestSet();
setLimits();
connectOpenSegments();
orderSegments();
if (armRemovalEnabled){
findRemovalPoints();
}
setLimits();
}
// Sets limits on the given slice (min and max x and z)
void PectusProcessor::setLimits(){
for(int i = 0; i < sliceSegments.size(); i++){
if (sliceSegments[i].first.x < minx.x) {
minx = sliceSegments[i].first;
}
if (sliceSegments[i].first.x > maxx.x) {
maxx = sliceSegments[i].first;
}
if (sliceSegments[i].second.x < minx.x) {
minx = sliceSegments[i].second;
}
if (sliceSegments[i].second.x > maxx.x) {
maxx = sliceSegments[i].second;
}
if (sliceSegments[i].first.z < minz.z) {
minz = sliceSegments[i].first;
}
if (sliceSegments[i].first.z > maxz.z) {
maxz = sliceSegments[i].first;
}
if (sliceSegments[i].second.z < minz.z) {
minz = sliceSegments[i].second;
}
if (sliceSegments[i].second.z > maxz.z) {
maxz = sliceSegments[i].second;
}
}
}
// Returns the line segment (represented by a pair of vertices) where Face f intersects plane yPlane
QPair<Vertex, Vertex> PectusProcessor::findSegment(const Face & f, double yPlane){
QPair<Vertex, Vertex> segment;
Vertex a(vertices[f.vertex1Index]);
Vertex b(vertices[f.vertex2Index]);
Vertex c(vertices[f.vertex3Index]);
if(a.y == yPlane || b.y == yPlane || c.y == yPlane){
// Each possible case
// A-B is the segment
if (a.y == yPlane && b.y == yPlane){
segment.first = a;
segment.second = b;
}
// A-C is the segment
else if (a.y == yPlane && c.y == yPlane){
segment.first = a;
segment.second = c;
}
// B-C is the segment
else if (b.y == yPlane && c.y == yPlane){
segment.first = b;
segment.second = c;
}
// A is in the segment
else if (a.y == yPlane){
segment.first = a;
segment.second = findVertex(b, c, yPlane);
}
// B is in the segment
else if (b.y == yPlane){
segment.first = b;
segment.second = findVertex(a, c, yPlane);
}
// C is in the segment
else if (c.y == yPlane){
segment.first = c;
segment.second = findVertex(a, b, yPlane);
}
}
// A and B are on the same side of the plane
// The vertices are on AC and BC
else if ((a.y > yPlane && b.y > yPlane) ||
(a.y < yPlane && b.y < yPlane)){
segment.first = findVertex(a, c, yPlane);
segment.second = findVertex(b, c, yPlane);
}
// A and C are on the same side of the plane
// The vertices are on AB and BC
else if ((a.y > yPlane && c.y > yPlane) ||
(a.y < yPlane && c.y < yPlane)){
segment.first = findVertex(a, b, yPlane);
segment.second = findVertex(b, c, yPlane);
}
// B and C are on the same side of the plane
// The vertices are on AB and AC
else if ((b.y > yPlane && c.y > yPlane) ||
(b.y < yPlane && c.y < yPlane)){
segment.first = findVertex(a, b, yPlane);
segment.second = findVertex(a, c, yPlane);
}
else {
qDebug() << "An error ocurred trying to find an intersection for a plane";
segment.first = Vertex(0, 0, 0);
segment.second = Vertex(0, 0, 0);
}
return segment;
}
// Returns the vertex where the line segment (a-b) intersects the plane.
Vertex PectusProcessor::findVertex(const Vertex & a, const Vertex & b, double yPlane){
double xcross = a.x - ((a.y - yPlane) / (a.y - b.y) * (a.x - b.x));
double zcross = a.z - ((a.y - yPlane) / (a.y - b.y) * (a.z - b.z));
return Vertex(xcross, yPlane, zcross);
}
double PectusProcessor:: getMaxY() {
return maxy;
}
double PectusProcessor:: getMinY() {
return miny;
}
double PectusProcessor:: getHallerIndex() {
return hallerIndex;
}
bool PectusProcessor::getHallerIndexVisible() {
return hallerIndexVisible;
}
double PectusProcessor::calculateHallerIndexWithoutDrawing(){
if (sliceSegments.isEmpty())
return -1;
findDefectLine(false);
double horizontalDistance = std::sqrt(std::pow(maxx.x - minx.x, 2) + std::pow(maxx.z - minx.z, 2));
double verticalDistance = std::sqrt(std::pow(hallerV2.x - hallerV1.x, 2) + std::pow(hallerV2.z - hallerV1.z, 2));
return horizontalDistance / verticalDistance;
}
void PectusProcessor::calculateHallerIndex(){
if (sliceSegments.isEmpty())
return;
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
QMetaObject::invokeMethod(canvas, "drawLine",
Q_ARG(QVariant, minx.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, minx.z*CANVAS_DRAWING_FACTOR),
Q_ARG(QVariant, maxx.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, maxx.z*CANVAS_DRAWING_FACTOR));
findDefectLine(true);
double horizontalDistance = std::sqrt(std::pow(maxx.x - minx.x, 2) + std::pow(maxx.z - minx.z, 2));
double verticalDistance = std::sqrt(std::pow(hallerV2.x - hallerV1.x, 2) + std::pow(hallerV2.z - hallerV1.z, 2));
qDebug() << horizontalDistance << " " <<verticalDistance;
qDebug() << hallerV2.x << " " << hallerV1.x << " " <<hallerV2.z << " " << hallerV1.z;
hallerIndex = horizontalDistance / verticalDistance;
hallerIndex = std::round(hallerIndex * 1000) / 1000;
emit hallerIndexChanged(hallerIndex);
hallerIndexVisible = true;
emit hallerIndexVisibleChanged(true);
}
void PectusProcessor::findDefectLine(bool draw) {
// Cannot run if sliceSegments is empty
if (sliceSegments.isEmpty())
return;
double defectLimitAndPointDiff = 0;
Vertex bottomDefectPoint = findDefectPoint(false, defectLimitAndPointDiff);
Vertex topDefectPoint = findDefectPoint(true, defectLimitAndPointDiff);
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
if(draw){
QMetaObject::invokeMethod(canvas, "drawLine",
Q_ARG(QVariant, topDefectPoint.x * CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, topDefectPoint.z * CANVAS_DRAWING_FACTOR),
Q_ARG(QVariant, bottomDefectPoint.x * CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, bottomDefectPoint.z * CANVAS_DRAWING_FACTOR));
}
}
void PectusProcessor::printDefectSegments() {
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
for (int i = 0; i < defectSegments.size(); i++) {
QMetaObject::invokeMethod(canvas, "drawLine",
Q_ARG(QVariant, defectSegments[i].first.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, defectSegments[i].first.z*CANVAS_DRAWING_FACTOR),
Q_ARG(QVariant, defectSegments[i].second.x*CANVAS_DRAWING_FACTOR), Q_ARG(QVariant, defectSegments[i].second.z*CANVAS_DRAWING_FACTOR));
}
}
void PectusProcessor::manualRemoveConnectedArms(double xStart, double zStart, double xEnd, double zEnd, double canvasWidth, double canvasHeight) {
// the line that was drawn
QPair<Vertex, Vertex> lineDrawn = { { xStart, 0, zStart }, { xEnd, 0, zEnd } };
// y = mx + b
// b = y - mx
double slopeOfLineDrawn = getSlopeOfLine(lineDrawn);
if (slopeOfLineDrawn < 0.00001 && slopeOfLineDrawn > -0.000001) {
slopeOfLineDrawn = 0.001;
}
double bOfLineDrawn = (zStart - (slopeOfLineDrawn * xStart));
QVector<QPair<Vertex, Vertex>> intersections;
for (int i = 0; i < sliceSegments.size(); i++) {
// mSeg * x + bSeg = mDrawn * x + bDrawn
// mSeg * x - mDrawn * x = bDrawn - bSeg
// (mSeg - mDrawn) * x = bDrawn - bSeg
// x = (bDrawn - bSeg) / (mSeg - mDrawn)
double slopeOfSliceSegment = getSlopeOfLine(sliceSegments[i]);
double bOfSegment = (sliceSegments[i].first.z * CANVAS_DRAWING_FACTOR) - (slopeOfSliceSegment * sliceSegments[i].first.x * CANVAS_DRAWING_FACTOR);
double xIntersection = (bOfLineDrawn - bOfSegment) / (slopeOfSliceSegment - slopeOfLineDrawn);
double zIntersection = slopeOfLineDrawn * xIntersection + bOfLineDrawn;
double minXOfSegment = getMinXofLine(sliceSegments[i]) * CANVAS_DRAWING_FACTOR;
double maxXOfSegment = getMaxXofLine(sliceSegments[i]) * CANVAS_DRAWING_FACTOR;
double maxZOfDrawn = zStart > zEnd ? zStart : zEnd;
double minZOfDrawn = zStart < zEnd ? zStart : zEnd;
if (minXOfSegment <= xIntersection && xIntersection <= maxXOfSegment &&
minZOfDrawn <= zIntersection && zIntersection <= maxZOfDrawn ) {
intersections.push_back(sliceSegments[i]);
}
}
QObject *canvas = rootQmlObject->findChild<QObject*>("canvas");
// assumption is made that to erase an arm the line drawn must cross at least two lines
if (intersections.size() != 2) {
QMetaObject::invokeMethod(canvas, "restoreOldImageData");
return;
}
double minXofDrawn = getMinXofLine(lineDrawn);
double maxXofDrawn = getMaxXofLine(lineDrawn);
bool isLeft;
if (minXofDrawn < canvasWidth / 2 && maxXofDrawn < canvasWidth / 2) {
isLeft = true;
}
else if (minXofDrawn > canvasWidth / 2 && maxXofDrawn > canvasWidth / 2) {
isLeft = false;
}
else {
// the line drawn goes over both halves of the canvas, which probably isn't right
QMetaObject::invokeMethod(canvas, "restoreOldImageData");
return;
}
for (int i = 0; i < sliceSegments.size(); i++) {
Vertex vertexOfLineClosestToDrawn;
if (isLeft) {
if (sliceSegments[i].first.x < sliceSegments[i].second.x) {
vertexOfLineClosestToDrawn = sliceSegments[i].second;
}
else {
vertexOfLineClosestToDrawn = sliceSegments[i].first;
}
}
else {
if (sliceSegments[i].first.x > sliceSegments[i].second.x) {
vertexOfLineClosestToDrawn = sliceSegments[i].second;
}
else {
vertexOfLineClosestToDrawn = sliceSegments[i].first;
}
}
// y = mx + b
// (y - b) / m = x
double xOfDrawnToEraseFrom = (vertexOfLineClosestToDrawn.z * CANVAS_DRAWING_FACTOR - bOfLineDrawn) / slopeOfLineDrawn;
if (isLeft) {
if (vertexOfLineClosestToDrawn.x * CANVAS_DRAWING_FACTOR < xOfDrawnToEraseFrom) {
sliceSegments.erase(sliceSegments.begin() + i);
i--;
}
}
else {
if (vertexOfLineClosestToDrawn.x * CANVAS_DRAWING_FACTOR > xOfDrawnToEraseFrom) {
sliceSegments.erase(sliceSegments.begin() + i);
i--;
}
}
}
// connect the intersection
Vertex firstPoint;
Vertex secondPoint;
if (isLeft) {
if (intersections[0].first.x < intersections[0].second.x) {
firstPoint = intersections[0].first;
}
else {
firstPoint = intersections[0].second;
}
if (intersections[1].first.x < intersections[1].second.x) {
secondPoint = intersections[1].first;
}
else {
secondPoint = intersections[1].second;
}
}
else {
if (intersections[0].first.x > intersections[0].second.x) {
firstPoint = intersections[0].first;
}
else {
firstPoint = intersections[0].second;
}
if (intersections[1].first.x > intersections[1].second.x) {
secondPoint = intersections[1].first;
}
else {
secondPoint = intersections[1].second;
}
}
QPair<Vertex, Vertex> newLine = { firstPoint, secondPoint };
sliceSegments.push_back(newLine);
QMetaObject::invokeMethod(canvas, "eraseRect",
Q_ARG(QVariant, 0), Q_ARG(QVariant, 0),
Q_ARG(QVariant, canvasWidth), Q_ARG(QVariant, canvasHeight));
setLimits();
connectOpenSegments();
orderSegments();
drawLineSegmentsWithoutRotation();
}
// Finds the point of deepest defect respective to the bottom or top of the torso
Vertex PectusProcessor::findDefectPoint(bool isTop, double & defectLimitAndPointDiff) {
QVector<QPair<Vertex, Vertex>> possiblePoints;
double max = std::numeric_limits<double>::max();
QPair<Vertex, Vertex> minXSegment = { {max, max, max}, {max, max, max} };
QPair<Vertex, Vertex> maxXSegment = { {-1, -1, -1}, {-1, -1, -1} };
QPair<Vertex, Vertex> minMaxZSegment;
if (isTop) {
minMaxZSegment = { { 0, 0, 0}, {0, 0, 0} };
}
else {
minMaxZSegment = { { max, max, max}, {max, max, max} };
}
QSet<int> visited;
double midPointX = (minx.x + maxx.x) / 2;
double midPointZ = (minz.z + maxz.z) / 2;
double xOffset = 0.05 * (maxx.x - minx.x);
for (int i = 0; i < sliceSegments.size(); i++) {
// check if points are too far to the left
if (sliceSegments[i].first.x < midPointX - xOffset || sliceSegments[i].second.x < midPointX - xOffset)
continue;
// check if points are too far to the right
if (sliceSegments[i].first.x > midPointX + xOffset || sliceSegments[i].second.x > midPointX + xOffset)
continue;
// check if points are too far down or too far up
if (isTop) {
if (sliceSegments[i].first.z > midPointZ || sliceSegments[i].second.z > midPointZ)
continue;
}
else {
if (sliceSegments[i].first.z < midPointZ || sliceSegments[i].second.z < midPointZ)
continue;
}
// get the respective limits (min x, max x, max z)
double minPx = getMinXofLine(sliceSegments[i]);
double minXx = getMinXofLine(minXSegment);
double maxPx = getMaxXofLine(sliceSegments[i]);
double maxXx = getMaxXofLine(maxXSegment);
double minMaxPz, minMaxZz;
if (isTop) {
minMaxPz = getMaxZofLine(sliceSegments[i]);
minMaxZz = getMaxZofLine(minMaxZSegment);
}
else {
minMaxPz = getMinZofLine(sliceSegments[i]);
minMaxZz = getMinZofLine(minMaxZSegment);
}
if (minPx < minXx) {
minXSegment = sliceSegments[i];
}
if (maxPx > maxXx) {
maxXSegment = sliceSegments[i];
}
if (isTop) {
if (minMaxPz > minMaxZz) {
minMaxZSegment = sliceSegments[i];
}
}
else {
if (minMaxPz < minMaxZz) {
minMaxZSegment = sliceSegments[i];
}
}
possiblePoints.push_back(sliceSegments[i]);
visited.insert(i);
}
// find right and left most segments
getDefectLeftRightLimits(visited, possiblePoints, true, isTop, minXSegment, minMaxZSegment);
getDefectLeftRightLimits(visited, possiblePoints, false, isTop, maxXSegment, minMaxZSegment);
double xOfDefect;
if (isTop) {
xOfDefect = minMaxZSegment.first.z > minMaxZSegment.second.z ? minMaxZSegment.first.x : minMaxZSegment.second.x;
}
else {
xOfDefect = minMaxZSegment.first.z < minMaxZSegment.second.z ? minMaxZSegment.first.x : minMaxZSegment.second.x;
}
double zOfDefect;
if (isTop) {
zOfDefect = getMaxZofLine(minMaxZSegment);
hallerV1 = { xOfDefect, minMaxZSegment.first.y, zOfDefect };
}
else {
zOfDefect = getMinZofLine(minMaxZSegment);
hallerV2 = { xOfDefect, minMaxZSegment.first.y, zOfDefect };
}
// the left and right defect limits, or "peaks" will be determined by the biggest difference
// between the defect point and the defect limit.
double minMaxZOfDefectLimits;
if (isTop) {
minMaxZOfDefectLimits = getMinZofLine(minXSegment) < getMinZofLine(maxXSegment) ?
getMinZofLine(minXSegment) : getMinZofLine(maxXSegment);
}
else {
minMaxZOfDefectLimits = getMaxZofLine(minXSegment) < getMaxZofLine(maxXSegment) ?
getMinZofLine(maxXSegment) : getMaxZofLine(maxXSegment);
}
double defectDiff = std::fabs(zOfDefect - minMaxZOfDefectLimits);
if (defectDiff > defectLimitAndPointDiff) {
defectLimitAndPointDiff = defectDiff;
// these lines represent the "peaks" of the chest
leftDefectLimit = minXSegment;
rightDefectLimit = maxXSegment;
defectSegments = possiblePoints;
}
return { xOfDefect, minMaxZSegment.first.y, zOfDefect };
}
// Extends the points that could be the defect, also retrieves left and right most point from defect
void PectusProcessor::getDefectLeftRightLimits(QSet<int> &visited, QVector<QPair<Vertex, Vertex>> &possiblePoints,
bool isLeft, bool isTop, QPair<Vertex, Vertex> & leftRightX,
QPair<Vertex, Vertex> & minMaxZSegment)
{
// extend a side to find the first opposite slope
while (true) {
double lowestDist = std::numeric_limits<double>::max();
int bestIndex = -1;
for (int j = 0; j < sliceSegments.size(); j++) {
if (visited.find(j) != visited.end()) continue;
double xDiff = std::fabs(leftRightX.second.x - sliceSegments[j].first.x);
double zDiff = std::fabs(leftRightX.second.z - sliceSegments[j].first.z);
double dist = (xDiff * xDiff) + (zDiff * zDiff);
if (dist < lowestDist) {
lowestDist = dist;
bestIndex= j;
}
}
if (bestIndex == -1)
return;
double slope = getSlopeOfLine(sliceSegments[bestIndex]);
// what the slope should be may not be intuitive
// because y increases as you go down the canvas
if (isLeft) {
if (isTop) {
if (slope < 0)
break;
}
else {
if (slope > 0)
break;
}
}
else {
if (isTop) {
if (slope > 0)
break;
}
else {
if (slope < 0)
break;
}
}
double minMaxPz;
double minMaxZz;
if (isTop) {
minMaxPz = getMaxZofLine(sliceSegments[bestIndex]);
minMaxZz = getMaxZofLine(minMaxZSegment);
}
else {
minMaxPz = getMinZofLine(sliceSegments[bestIndex]);
minMaxZz = getMinZofLine(minMaxZSegment);
}
if (isTop) {
if (minMaxPz > minMaxZz) {
minMaxZSegment = sliceSegments[bestIndex];
}
}
else {
if (minMaxPz < minMaxZz) {
minMaxZSegment = sliceSegments[bestIndex];
}
}
possiblePoints.push_back(sliceSegments[bestIndex]);
leftRightX = sliceSegments[bestIndex];
visited.insert(bestIndex);
}
// erase the last segment (which will be equal to left or right defect limit
if (!possiblePoints.isEmpty()) {
possiblePoints.removeLast();
}
}
double PectusProcessor::getSlopeOfLine(QPair<Vertex, Vertex> &segment)
{
if (std::fabs(segment.second.x - segment.first.x) < 0.000001) {
return 1000000000;
}
else {
return (segment.second.z - segment.first.z) / (segment.second.x - segment.first.x);
}
}
double PectusProcessor::getMinXofLine(QPair<Vertex, Vertex> &segment)
{
return segment.first.x < segment.second.x ? segment.first.x : segment.second.x;
}
double PectusProcessor::getMinZofLine(QPair<Vertex, Vertex> &segment)
{
return segment.first.z < segment.second.z ? segment.first.z : segment.second.z;
}
double PectusProcessor::getMaxXofLine(QPair<Vertex, Vertex> &segment)
{
return segment.first.x > segment.second.x ? segment.first.x : segment.second.x;
}
double PectusProcessor::getMaxZofLine(QPair<Vertex, Vertex> &segment)
{
return segment.first.z > segment.second.z ? segment.first.z : segment.second.z;
}
//Given a set of line segments, finds the largest set of connected line segments.
QVector<QPair<Vertex,Vertex>> PectusProcessor::findLargestSet(){
QVector<bool> found = QVector<bool>(sliceSegments.size(), false);
QVector<QVector<int>> sets;
// Iterate through all segments to find a start point
for(int i = 0; i < sliceSegments.size(); i++){
// ignore segments already included in a set
if(found[i]){
continue;
}
found[i] = true;
QVector<int> currentSet;
currentSet.push_back(i);
bool nextFound = true;
int currentSegment = i;
// Find all segments in the set connected to the start point
while(nextFound){
nextFound = false;
for(int j = 0; j < sliceSegments.size(); j++){
if(found[j])
continue;
// check if the segment is connected to the current segment.
if(sliceSegments[j].first == sliceSegments[currentSegment].first ||
sliceSegments[j].first == sliceSegments[currentSegment].second ||
sliceSegments[j].second == sliceSegments[currentSegment].first ||
sliceSegments[j].second == sliceSegments[currentSegment].second){
nextFound = true;
currentSet.push_back(j);
found[j] = true;
currentSegment = j;
break;
}
}
// If you cannot find another segment, check the "other side" by moving back
// to the start point. If you fail to find anything from the start point,
// the set is complete.
if(!nextFound){
if(currentSegment != currentSet[0]){
currentSegment = currentSet[0];
nextFound = true;
}
}
}
sets.push_back(currentSet);
}
// Determine the largest connected set
int maxSetSize = 0;
int largestSet = -1;
qDebug() << "There are " << sets.size() << " sets in this slice";
for(int i = 0; i < sets.size(); i++){
if (sets[i].size() > maxSetSize){
maxSetSize = sets[i].size();
largestSet = i;
}
}
// Find the number of disconnected arms removed by this function
double avgX = (minx.x + maxx.x) / 2; // ~middle of slice (exact not needed)
numArmsRemoved = 0;
for(int i = 0; i < sets.size(); i++){
if(i == largestSet)
continue;
if (sets[i].size() > 50){
numArmsRemoved++;
if (sliceSegments[sets[i][0]].first.x < avgX){
leftArmRemoved = true;
qDebug() << "Left";
}
else if (sliceSegments[sets[i][0]].first.x >= avgX) {
rightArmRemoved = true;
qDebug() << "Right";
}
}
}
qDebug() << numArmsRemoved << " separated arm(s) removed from this slice";
// Populate the vector of vertices
QVector<QPair<Vertex, Vertex>> connected;
for(int i = 0; i < sets[largestSet].size(); i++){
connected.push_back(sliceSegments[sets[largestSet][i]]);
}
return connected;
}
// Orders the segments in sliceSegments
void PectusProcessor::orderSegments(){
if (sliceSegments.size() < 2){
return;
}
// Order the segments in a circular fashion.
QVector<QPair<Vertex, Vertex>> newSegments;
QVector<bool> included = QVector<bool>(sliceSegments.size(), false);
newSegments.push_back(sliceSegments[0]);
while (newSegments.size() < sliceSegments.size()){
bool pushed = false;
// Search for a segment that connects to the last segment in the new vector.
for (int i = 0; i < sliceSegments.size(); i++){
if (included[i]){
continue;
}
// Don't repeat the same segment.
if ((newSegments[newSegments.size() - 1].first == sliceSegments[i].first ||
newSegments[newSegments.size() - 1].first == sliceSegments[i].second)
&&
(newSegments[newSegments.size() - 1].second == sliceSegments[i].first ||
newSegments[newSegments.size() - 1].second == sliceSegments[i].second)){
continue;
}
if (newSegments[newSegments.size() - 1].second == sliceSegments[i].first){
newSegments.push_back(sliceSegments[i]);
included[i] = true;
pushed = true;
break;
}
else if (newSegments[newSegments.size() - 1].second == sliceSegments[i].second){
QPair<Vertex, Vertex> flipped;
flipped.first = sliceSegments[i].second;
flipped.second = sliceSegments[i].first;
newSegments.push_back(flipped);
included[i] = true;
pushed = true;
break;
}
}
if (!pushed){
// Otherwise, this is a disconnected slice?
for(int i = 0; i < sliceSegments.size(); i++){
if (!included[i]){
newSegments.push_back(sliceSegments[i]);
included[i] = true;
}
}
}
}
sliceSegments = newSegments;
}
void PectusProcessor::connectOpenSegments(){
// Find segments with open ends.
QVector<QPair<Vertex, Vertex>> openSegments;
QVector<int> connectedSides;
for(int i = 0; i < sliceSegments.size(); i++){
int numConnected = 0;
int connectedSide = 1;
for(int j = 0; j < sliceSegments.size(); j++){
if (i == j){
continue;
}
if (sliceSegments[i].first == sliceSegments[j].first ||
sliceSegments[i].first == sliceSegments[j].second){
numConnected++;
connectedSide = 1;
}
else if (sliceSegments[i].second == sliceSegments[j].first ||
sliceSegments[i].second == sliceSegments[j].second){
numConnected++;
connectedSide = 2;
}
}
// if (numConnected == 0){
// qDebug() << "Something went wrong";
// exit(1);
// }
if (numConnected == 1){
qDebug() << "Open segment at " << i;
openSegments.push_back(sliceSegments[i]);
connectedSides.push_back(connectedSide);
}
}