Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello I just need help simplifying this C code and making it run faster, please note where u make these changes, thank you.#include typedef struct

Hello I just need help simplifying this C code and making it run faster, please note where u make these changes, thank you.#include
typedef struct {
uint32_t *pixels;
unsigned int w;
unsigned int h;
} image_t;
#define getByte(value, n)(value >>(n*8) & 0xFF)
uint32_t getpixel(image_t *image, unsigned int x, unsigned int y){
return image->pixels[(y*image->w)+x];
}
float max(float a, float b){ return (a < b)? a : b; };
float lerp(float s, float e, float t){return s+(e-s)*t;}
float blerp(float c00, float c10, float c01, float c11, float tx, float ty){
return lerp(lerp(c00, c10, tx), lerp(c01, c11, tx), ty);
}
void putpixel(image_t *image, unsigned int x, unsigned int y, uint32_t color){
image->pixels[(y*image->w)+ x]= color;
}
void scale(image_t *src, image_t *dst, float scalex, float scaley){
int newWidth =(int)src->w*scalex;
int newHeight=(int)src->h*scaley;
int x, y;
for(x=0, y=0; y < newHeight; x++){
if(x > newWidth){
x =0; y++;
}
//float gx = x /(float)(newWidth)*(src->w -1);
//float gy = y /(float)(newHeight)*(src->h -1);
// Image should be clamped at the edges and not scaled.
float gx = max(x /(float)(newWidth)*(src->w)-0.5f, src->w -1);
float gy = max(y /(float)(newHeight)*(src->h)-0.5, src->h -1);
int gxi =(int)gx;
int gyi =(int)gy;
uint32_t result=0;
uint32_t c00= getpixel(src, gxi, gyi);
uint32_t c10= getpixel(src, gxi+1, gyi);
uint32_t c01= getpixel(src, gxi, gyi+1);
uint32_t c11= getpixel(src, gxi+1, gyi+1);
uint8_t i;
for(i =0; i <3; i++){
//((uint8_t*)&result)[i]= blerp(((uint8_t*)&c00)[i],((uint8_t*)&c10)[i],((uint8_t*)&c01)[i],((uint8_t*)&c11)[i], gxi - gx, gyi - gy); // this is shady
result |=(uint8_t)blerp(getByte(c00, i), getByte(c10, i), getByte(c01, i), getByte(c11, i), gx - gxi, gy -gyi)<<(8*i);
}
putpixel(dst,x, y, result);
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2018 Dublin Ireland September 10 14 2018 Proceedings Part 1 Lnai 11051

Authors: Michele Berlingerio ,Francesco Bonchi ,Thomas Gartner ,Neil Hurley ,Georgiana Ifrim

1st Edition

3030109240, 978-3030109240

More Books

Students also viewed these Databases questions

Question

2. Define identity.

Answered: 1 week ago

Question

1. Identify three communication approaches to identity.

Answered: 1 week ago

Question

4. Describe phases of majority identity development.

Answered: 1 week ago