mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Compare commits
2 Commits
2a4afa042c
...
96a24339c5
Author | SHA1 | Date | |
---|---|---|---|
96a24339c5 | |||
4b3327fcb1 |
@ -42,7 +42,7 @@ static QString capitalized(const QString &str)
|
|||||||
static QByteArray ft2m(const QByteArray &str)
|
static QByteArray ft2m(const QByteArray &str)
|
||||||
{
|
{
|
||||||
bool ok;
|
bool ok;
|
||||||
int number = str.toInt(&ok);
|
double number = str.toDouble(&ok);
|
||||||
return ok ? QByteArray::number(qRound(number * 0.3048)) : str;
|
return ok ? QByteArray::number(qRound(number * 0.3048)) : str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,35 +95,95 @@ static void gaussBlur4(MatrixD &src, MatrixD &dst, int r)
|
|||||||
boxBlur4(src, dst, (bxs.at(2) - 1) / 2);
|
boxBlur4(src, dst, (bxs.at(2) - 1) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static double avg(const MatrixD &m, int pi, int pj, int r)
|
||||||
|
{
|
||||||
|
int col, row, cnt = 0;
|
||||||
|
double sum = 0;
|
||||||
|
|
||||||
|
if (r >= qMax(m.h(), m.w()))
|
||||||
|
return NAN;
|
||||||
|
|
||||||
|
row = pi - r;
|
||||||
|
if (row >= 0) {
|
||||||
|
for (int j = qMax(pj - r, 0); j < qMin(pj + r, m.w()); j++) {
|
||||||
|
if (!std::isnan(m.at(row, j))) {
|
||||||
|
sum += m.at(row, j);
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
row = pi + r;
|
||||||
|
if (row < m.h()) {
|
||||||
|
for (int j = qMax(pj - r, 0); j < qMin(pj + r, m.w()); j++) {
|
||||||
|
if (!std::isnan(m.at(row, j))) {
|
||||||
|
sum += m.at(row, j);
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
col = pj - r;
|
||||||
|
if (col >= 0) {
|
||||||
|
for (int i = qMax(pi - r + 1, 0); i < qMin(pi + r - 1, m.h()); i++) {
|
||||||
|
if (!std::isnan(m.at(i, col))) {
|
||||||
|
sum += m.at(i, col);
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
col = pj + r;
|
||||||
|
if (col < m.w()) {
|
||||||
|
for (int i = qMax(pi - r + 1, 0); i < qMin(pi + r - 1, m.h()); i++) {
|
||||||
|
if (!std::isnan(m.at(i, col))) {
|
||||||
|
sum += m.at(i, col);
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cnt)
|
||||||
|
return sum / cnt;
|
||||||
|
else
|
||||||
|
return avg(m, pi, pj, r + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool fillNANs(const MatrixD &m, MatrixD &src)
|
||||||
|
{
|
||||||
|
bool hasNAN = false;
|
||||||
|
|
||||||
|
for (int i = 0; i < m.h(); i++) {
|
||||||
|
for (int j = 0; j < m.w(); j++) {
|
||||||
|
if (std::isnan(m.at(i, j))) {
|
||||||
|
hasNAN = true;
|
||||||
|
|
||||||
|
double val = avg(src, i, j, 1);
|
||||||
|
if (std::isnan(val))
|
||||||
|
return false;
|
||||||
|
else
|
||||||
|
src.at(i, j) = val;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return hasNAN;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void revertNANs(const MatrixD &m, MatrixD &dst)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < m.size(); i++)
|
||||||
|
if (std::isnan(m.at(i)))
|
||||||
|
dst.at(i) = NAN;
|
||||||
|
}
|
||||||
|
|
||||||
MatrixD Filter::blur(const MatrixD &m, int radius)
|
MatrixD Filter::blur(const MatrixD &m, int radius)
|
||||||
{
|
{
|
||||||
MatrixD src(m);
|
MatrixD src(m);
|
||||||
MatrixD dst(m.h(), m.w());
|
MatrixD dst(m.h(), m.w());
|
||||||
double sum = 0;
|
bool hasNAN = fillNANs(m, src);
|
||||||
int cnt = 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < m.size(); i++) {
|
|
||||||
if (!std::isnan(m.at(i))) {
|
|
||||||
sum += m.at(i);
|
|
||||||
cnt++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cnt != m.size()) {
|
|
||||||
double avg = sum / cnt;
|
|
||||||
|
|
||||||
for (int i = 0; i < m.size(); i++)
|
|
||||||
if (std::isnan(m.at(i)))
|
|
||||||
src.at(i) = avg;
|
|
||||||
}
|
|
||||||
|
|
||||||
gaussBlur4(src, dst, radius);
|
gaussBlur4(src, dst, radius);
|
||||||
|
|
||||||
if (cnt != m.size()) {
|
if (hasNAN)
|
||||||
for (int i = 0; i < dst.size(); i++)
|
revertNANs(m, dst);
|
||||||
if (std::isnan(m.at(i)))
|
|
||||||
dst.at(i) = NAN;
|
|
||||||
}
|
|
||||||
|
|
||||||
return dst;
|
return dst;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user