217 lines
6.0 KiB
C++
217 lines
6.0 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright 2021 Arm Limited
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
// use this file except in compliance with the License. You may obtain a copy
|
|
// of the License at:
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing permissions and limitations
|
|
// under the License.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Overview
|
|
// ========
|
|
//
|
|
// This is a utility tool to automatically generate single tile test vectors
|
|
// out of a larger test image. This tool takes three input images:
|
|
//
|
|
// - the uncompressed referenced,
|
|
// - the known-good compressed reference,
|
|
// - a new compressed image.
|
|
//
|
|
// The two compressed images are compared block-by-block, and if any block
|
|
// differences are found the worst block is extracted from the uncompressed
|
|
// reference and written back to disk as a single tile output image.
|
|
//
|
|
// Limitations
|
|
// ===========
|
|
//
|
|
// This tool only currently supports 2D LDR images.
|
|
//
|
|
// Build
|
|
// =====
|
|
//
|
|
// g++ astc_test_autoextract_hdr.cpp -I../Source -o astc_test_autoextract_hdr
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#include "ThirdParty/stb_image.h"
|
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
#include "ThirdParty/stb_image_write.h"
|
|
|
|
/**
|
|
* @brief Compute the array offset in a 2D image
|
|
*/
|
|
int pix(int x_pix, int y_idx, int x_idx, int chans, int p_idx)
|
|
{
|
|
return ((y_idx * x_pix) + x_idx) * chans + p_idx;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
|
|
// Parse command line
|
|
if (argc < 6)
|
|
{
|
|
printf("Usage: astc_test_extract <blocksize> <ref> <good> <bad> <out>\n");
|
|
return 1;
|
|
}
|
|
|
|
int blockdim_x, blockdim_y;
|
|
if (sscanf(argv[1], "%dx%d", &blockdim_x, &blockdim_y) < 2)
|
|
{
|
|
printf("blocksize must be of form WxH; e.g. 8x4\n");
|
|
return 1;
|
|
}
|
|
|
|
// Load the original reference image
|
|
int ref_dim_x, ref_dim_y, ref_ncomp;
|
|
float* data_ref = (float*)stbi_loadf(argv[2], &ref_dim_x, &ref_dim_y, &ref_ncomp, 4);
|
|
if (!data_ref)
|
|
{
|
|
printf("Failed to load reference image.\n");
|
|
return 1;
|
|
}
|
|
|
|
// Load the good test image
|
|
int good_dim_x, good_dim_y, good_ncomp;
|
|
float* data_good = (float*)stbi_loadf(argv[3], &good_dim_x, &good_dim_y, &good_ncomp, 4);
|
|
if (!data_good)
|
|
{
|
|
printf("Failed to load good test image.\n");
|
|
return 1;
|
|
}
|
|
|
|
// Load the bad test image
|
|
int bad_dim_x, bad_dim_y, bad_ncomp;
|
|
float* data_bad = (float*)stbi_loadf(argv[4], &bad_dim_x, &bad_dim_y, &bad_ncomp, 4);
|
|
if (!data_bad)
|
|
{
|
|
printf("Failed to load bad test image.\n");
|
|
return 1;
|
|
}
|
|
|
|
if (ref_dim_x != good_dim_x || ref_dim_x != bad_dim_x ||
|
|
ref_dim_y != good_dim_y || ref_dim_y != bad_dim_y)
|
|
{
|
|
printf("Failed as images are different resolutions.\n");
|
|
return 1;
|
|
}
|
|
|
|
|
|
int x_blocks = (ref_dim_x + blockdim_x - 1) / blockdim_x;
|
|
int y_blocks = (ref_dim_y + blockdim_y - 1) / blockdim_y;
|
|
|
|
float* errorsums = (float*)malloc(x_blocks * y_blocks * 4);
|
|
for (int i = 0; i < x_blocks * y_blocks; i++)
|
|
{
|
|
errorsums[i] = 0;
|
|
}
|
|
|
|
// Diff the two test images to find blocks that differ
|
|
for (int y = 0; y < ref_dim_y; y++)
|
|
{
|
|
for (int x = 0; x < ref_dim_x; x++)
|
|
{
|
|
int x_block = x / blockdim_x;
|
|
int y_block = y / blockdim_y;
|
|
|
|
float r_gd = data_good[pix(ref_dim_x, y, x, 4, 0)];
|
|
float g_gd = data_good[pix(ref_dim_x, y, x, 4, 1)];
|
|
float b_gd = data_good[pix(ref_dim_x, y, x, 4, 2)];
|
|
float a_gd = data_good[pix(ref_dim_x, y, x, 4, 3)];
|
|
|
|
float r_bd = data_bad[pix(ref_dim_x, y, x, 4, 0)];
|
|
float g_bd = data_bad[pix(ref_dim_x, y, x, 4, 1)];
|
|
float b_bd = data_bad[pix(ref_dim_x, y, x, 4, 2)];
|
|
float a_bd = data_bad[pix(ref_dim_x, y, x, 4, 3)];
|
|
|
|
float r_diff = (r_gd - r_bd) * (r_gd - r_bd);
|
|
float g_diff = (g_gd - g_bd) * (g_gd - g_bd);
|
|
float b_diff = (b_gd - b_bd) * (b_gd - b_bd);
|
|
float a_diff = (a_gd - a_bd) * (a_gd - a_bd);
|
|
|
|
float diff = abs(r_diff) + abs(g_diff) + abs(b_diff) + abs(a_diff);
|
|
errorsums[pix(x_blocks, y_block, x_block, 1, 0)] += diff;
|
|
}
|
|
}
|
|
|
|
// Diff the two test images to find blocks that differ
|
|
float worst_error = 0.0f;
|
|
int worst_x_block = 0;
|
|
int worst_y_block = 0;
|
|
for (int y = 0; y < y_blocks; y++)
|
|
{
|
|
for (int x = 0; x < x_blocks; x++)
|
|
{
|
|
float error = errorsums[pix(x_blocks, y, x, 1, 0)];
|
|
if (error > worst_error)
|
|
{
|
|
worst_error = error;
|
|
worst_x_block = x;
|
|
worst_y_block = y;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (worst_error == 0.0f)
|
|
{
|
|
printf("No block errors found\n");
|
|
}
|
|
else
|
|
{
|
|
int start_y = worst_y_block * blockdim_y;
|
|
int start_x = worst_x_block * blockdim_x;
|
|
|
|
int end_y = (worst_y_block + 1) * blockdim_y;
|
|
int end_x = (worst_x_block + 1) * blockdim_x;
|
|
|
|
if (end_x > ref_dim_x)
|
|
{
|
|
end_x = ref_dim_x;
|
|
}
|
|
|
|
if (end_y > ref_dim_y)
|
|
{
|
|
end_y = ref_dim_y;
|
|
}
|
|
|
|
int outblk_x = end_x - start_x;
|
|
int outblk_y = end_y - start_y;
|
|
|
|
printf("Block errors found at ~(%u, %u) px\n", start_x, start_y);
|
|
|
|
float* data_out = (float*)malloc(blockdim_x * blockdim_y * 4 * 4);
|
|
for (int y = 0; y < outblk_y; y++)
|
|
{
|
|
for (int x = 0; x < outblk_x; x++)
|
|
{
|
|
data_out[(y * outblk_x * 4) + (x * 4) + 0] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 0];
|
|
data_out[(y * outblk_x * 4) + (x * 4) + 1] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 1];
|
|
data_out[(y * outblk_x * 4) + (x * 4) + 2] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 2];
|
|
data_out[(y * outblk_x * 4) + (x * 4) + 3] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 3];
|
|
}
|
|
}
|
|
|
|
// Write out the worst bad block (from original reference)
|
|
stbi_write_hdr(argv[5], outblk_x, outblk_y, 4, data_out);
|
|
|
|
free(data_out);
|
|
}
|
|
|
|
free(errorsums);
|
|
stbi_image_free(data_ref);
|
|
stbi_image_free(data_good);
|
|
stbi_image_free(data_bad);
|
|
return 0;
|
|
}
|