still tweaking...

This commit is contained in:
phyto
2020-12-07 22:02:08 +01:00
parent 8668e15d3e
commit ae7fdd49bc
3 changed files with 22 additions and 7 deletions

View File

@@ -66,7 +66,7 @@ fprintf(stderr, "IdxValues array at %p\n", idxvalues);
/* compute all the needed values */
for (idx=0; idx<nombre; idx++) {
filename = ptr_glob->gl_pathv[idx];
foo = get_float_metric_a_from_file(filename, &metrique);
foo = get_float_metric_from_file(filename, &metrique, method);
if (foo) {
fprintf(stderr, "%s: err %d get metric of '%s'\n", __func__,
foo, filename);
@@ -80,7 +80,7 @@ for (idx=0; idx<nombre; idx++) {
if (method) {
/* and now, we can massage all our datas */
fprintf(stderr, "sorting %d ...\n", method);
// fprintf(stderr, "sorting %d ...\n", method);
qsort(idxvalues, nombre, sizeof(IdxValue), cmp_idxvalues);
}
@@ -91,7 +91,7 @@ if (verbosity > 1) {
fflush(stdout);
}
}
fprintf(stderr, "\n.\n");
return 0;
}
@@ -140,6 +140,8 @@ w = iarray[0], h = iarray[1];
fprintf(stderr, "first image size : %dx%d\n", w, h);
fimg_create(&A, w, h, 3); pFirst = &A;
fimg_vdeg_a(&A, idx_values[0].value);
fimg_create(&B, w, h, 3); pSecond = &B;
fimg_create(&Out, w, h, 3);