no clue :) just to push it
[demo] / src / image.cc
index 01ee08f..818b686 100644 (file)
@@ -119,4 +119,56 @@ bool Image::load(const char *fname)
 
        img_destroy(&ipm);
        return true;
+}
+
+Vec4 Image::get_pixel(int x, int y) const
+{
+       if(is_float) {
+               return ((Vec4 *)pixels)[y * w + x];
+       }
+
+       Vec4 color;
+       unsigned char *pptr = ((unsigned char *)pixels) + (y * w + x) * 4;
+       color.x = pptr[0] / 255.0;
+       color.y = pptr[1] / 255.0;
+       color.z = pptr[2] / 255.0;
+       color.w = pptr[3] / 255.0;
+
+       return color;
+}
+
+Vec4 Image::lookup_nearest(float u, float v) const
+{
+       int x = (int)(u * w) % w;
+       int y = (int)(v * h) % h;
+
+       return get_pixel(x, y);
+}
+
+Vec4 Image::lookup_linear(float u, float v, float du, float dv) const
+{
+       /* bottom left */
+       int x0 = (int)(u * w) % w;
+       int y0 = (int)(v * h) % h;
+       int x1 = (x0 + 1) % w;
+       int y1 = (y0 + 1) % h;
+
+       /* uv coordinates at the img corners */
+       float u0 = (float)x0 / (float)w;
+       float v0 = (float)y0 / (float)h;
+       float u1 = (float)(x0 + 1) / (float)w;
+       float v1 = (float)(y0 + 1) / (float)h;
+
+       float tu = (u - u0) / (u1 - u0);
+       float tv = (v - v0) / (v1 - v0);
+
+       Vec4 p00 = get_pixel(x0, y0);
+       Vec4 p01 = get_pixel(x0, y1);
+       Vec4 p11 = get_pixel(x1, y1);
+       Vec4 p10 = get_pixel(x1, y0);
+
+       Vec4 ptop = lerp(p01, p11, tu);
+       Vec4 pbot = lerp(p00, p10, tu);
+
+       return lerp(pbot, ptop, tv);
 }
\ No newline at end of file