Skip to content

Commit

Permalink
DWT fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aportelli committed Jan 20, 2024
1 parent b938a85 commit 00cf854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Numerical/DWT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ void upsample(MatType &out, const MatType &in)

void DWT::upsample(DVec &out, const DVec &in)
{
upsample(out, in);
::upsample(out, in);
}

void DWT::upsample(DMat &out, const DMat &in)
{
upsample(out, in);
::upsample(out, in);
}

// DWT /////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 00cf854

Please # to comment.