| 575 | } |
| 576 | |
| 577 | void DatapickerImagePrivate::discretize() { |
| 578 | PERFTRACE(QLatin1String(Q_FUNC_INFO)); |
| 579 | if (plotImageType != DatapickerImage::PlotImageType::ProcessedImage) |
| 580 | return; |
| 581 | |
| 582 | ImageEditor::discretize(&q->processedPlotImage, &q->originalPlotImage, settings, q->background); |
| 583 | |
| 584 | if (plotPointsType != DatapickerImage::PointsType::SegmentPoints) |
| 585 | Q_EMIT q->requestUpdate(); |
| 586 | else |
| 587 | makeSegments(); |
| 588 | } |
| 589 | |
| 590 | void DatapickerImagePrivate::makeSegments() { |
| 591 | if (plotPointsType != DatapickerImage::PointsType::SegmentPoints) |