📄 re8_ppv.c
字号:
#include <float.h>
#include <stdlib.h>
#include "../include/amr_plus.h"
static void nearest_neighbor_2D8(float x[], int y[]);
/*--------------------------------------------------------------
RE8_PPV(x,y)
NEAREST NEIGHBOR SEARCH IN INFINITE LATTICE RE8
the algorithm is based on the definition of RE8 as
RE8 = (2D8) U (2D8+[1,1,1,1,1,1,1,1])
it applies the coset decoding of Sloane and Conway
(i) x: point in R^8
(o) y: point in RE8 (8-dimensional integer vector)
--------------------------------------------------------------
*/
void RE8_PPV(float x[], int y[])
{
int i,y0[8],y1[8];
float e0,e1,x1[8],tmp;
/* find the nearest neighbor y0 of x in 2D8 */
nearest_neighbor_2D8(x, y0);
/* find the nearest neighbor y1 of x in 2D8+(1,...,1) (by coset decoding) */
for (i=0;i<8;i++)
{
x1[i]=x[i]-1.0f;
}
nearest_neighbor_2D8(x1, y1);
for (i=0;i<8;i++)
{
y1[i]+=1;
}
/* compute e0=||x-y0||^2 and e1=||x-y1||^2 */
e0=e1=0.0;
for (i=0;i<8;i++)
{
tmp = x[i]-y0[i];
e0+=tmp*tmp;
tmp = x[i]-y1[i];
e1+=tmp*tmp;
}
/* select best candidate y0 or y1 to minimize distortion */
if (e0<e1)
{
for (i=0;i<8;i++)
{
y[i]=y0[i];
}
}
else
{
for (i=0;i<8;i++)
{
y[i]=y1[i];
}
}
return;
}
/*--------------------------------------------------------------
nearest_neighbor_2D8(x,y)
NEAREST NEIGHBOR SEARCH IN INFINITE LATTICE 2D8
algorithm: nn_2D8(x) = 2*nn_D8(x/2)
nn_D8 = decoding of Z^8 with Wagner rule
(see Conway and Sloane's paper in IT-82)
(i) x: point in R^8
(o) y: point in 2D8 (8-dimensional integer vector)
--------------------------------------------------------------
*/
static void nearest_neighbor_2D8(float x[], int y[])
{
int i,j,sum;
float s,e[8],em;
/* round x into 2Z^8 i.e. compute y=(y1,...,y8) such that yi = 2[xi/2]
where [.] is the nearest integer operator
in the mean time, compute sum = y1+...+y8
*/
sum=0;
for (i=0;i<8;i++)
{
/* round to ..., -2, 0, 2, ... ([-1..1[ --> 0) */
if (x[i] < 0)
{
y[i] = -2*(((int)(1.0-x[i]))>>1);
}
else
{
y[i] = 2*(((int)(1.0+x[i]))>>1);
}
sum += y[i];
}
/* check if y1+...+y8 is a multiple of 4
if not, y is not round xj in the wrong way where j is defined by
j = arg max_i | xi -yi|
(this is called the Wagner rule)
*/
if (sum%4)
{
/* find j = arg max_i | xi -yi| */
em=0;
j=0;
for (i=0;i<8;i++)
{
/* compute ei = xi-yi */
e[i]=x[i]-y[i];
}
for (i=0;i<8;i++)
{
/* compute |ei| = | xi-yi | */
if (e[i]<0)
{
s=-e[i];
}
else
{
s=e[i];
}
/* check if |ei| is maximal, if so, set j=i */
if (em<s)
{
em=s;
j=i;
}
}
/* round xj in the "wrong way" */
if (e[j]<0)
{
y[j]-=2;
}
else
{
y[j]+=2;
}
}
return;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -