show/hide this revision's text 3 added 6 characters in body

Switch statements compile to a jump table for consecutive values and to a bunch of if-else statements for sparse values. In any case, you don't want a switch statement in your inner loop for image processing if you care about performance. You want to do this as below instead:.

Also, note that I moved the weight calculation out of the inner loop (and swapped the loops for case 2 in order to achieve this). This type of thinking, moving stuff out of the inner loop, will get you the performance you want out of C.

switch (mode)                  /* select the type of calculation */
{
case 0:
    weight = dCentre / maxDistanceEdge;
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
case 1:
    for (x = 0; x < width; x++) {
        weight = (float)x/width;
        for (y = 0; y < height; y++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
case 2:
    // note - the loops have been swapped to get the weight calc out of the inner loop
    for (y = 0; y < height; y++) {
        weight = (float)y/height;
        for (x = 0; x < width; x++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
case 3:
    weight = dBottomLeft / maxDistanceCorner;
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
case 4:
    weight = dTopRight / maxDistanceCorner;
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
default:
    weight = 1;
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;

// etc..
}

Also, you notice I moved the weight calculation out of the inner loop (and swapped the loops for case 2 in order to achieve this). This type of thinking, moving stuff out of the inner loop, will get you the performance you want out of C.

show/hide this revision's text 2 added 1328 characters in body; deleted 51 characters in body
weight = dCentre / maxDistanceEdge; // Calculate the new pixel value given the weight ... break;case 1: for (x = dCentre 0; x < width; x++) { weight = (float)x/width; for (y = 0; y < height; y++) { /maxDistanceEdge/ Calculate the new pixel value given the weight ... break;case 2: // note - the loops have been swapped to get the weight calc out of the inner loop for (y = 0; y < height; y++) { weight = (float)y/height; for (x = 0; x < width; x++) {case 13: weight = dBottomLeft / maxDistanceCorner; // Calculate the new pixel value given the weight ... break;case 4: weight = dTopRight / maxDistanceCorner; for (float)x/width; x = 0; x < width; x++) { for (y = 0; y < height; y++) { weight = 1; for (x = 0; x < width; x++) { for (y = 0; y < height; y++) { // Calculate the new pixel value given the weight ... break;// etc..

Yes

Also, it sucks to have your you notice I moved the weight calculation out of the inner loop (and swapped the loops duplicated like thatfor case 2 in order to achieve this). This type of thinking, but that's moving stuff out of the price to pay for inner loop, will get you the performance you want out of C.

show/hide this revision's text 1

Switch statements compile to a jump table for consecutive values and to a bunch of if-else statements for sparse values. In any case, you don't want a switch statement in your inner loop for image processing if you care about performance. You want to do this instead:

switch (mode)                  /* select the type of calculation */
{
case 0:
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
            weight = dCentre / maxDistanceEdge;
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;
case 1:
    for (x = 0; x < width; x++) {
        for (y = 0; y < height; y++) {
             weight = (float)x/width;             
             // Calculate the new pixel value given the weight
             ...
        }
    }
    break;

// etc..
}

Yes, it sucks to have your loops duplicated like that, but that's the price to pay for performance.