stuff
This commit is contained in:
parent
f18a3ccdc7
commit
f1f0f9acbb
5
TODO
5
TODO
@ -1,3 +1,8 @@
|
|||||||
|
- im_disp2XYZ() makes a new set of lookup tables for every call, argh
|
||||||
|
|
||||||
|
maybe use disp->name to get built tables from a hash? I think we can say
|
||||||
|
names need to be unique
|
||||||
|
|
||||||
- more stuff from util.c? too much to do it all now
|
- more stuff from util.c? too much to do it all now
|
||||||
|
|
||||||
- maybe im_insertplaceset() should be im_insertset()? it's not an inplace
|
- maybe im_insertplaceset() should be im_insertset()? it's not an inplace
|
||||||
|
@ -38,10 +38,8 @@
|
|||||||
#endif /*HAVE_CONFIG_H*/
|
#endif /*HAVE_CONFIG_H*/
|
||||||
#include <vips/intl.h>
|
#include <vips/intl.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#include <vips/vips.h>
|
#include <vips/vips.h>
|
||||||
|
#include <vips/internal.h>
|
||||||
|
|
||||||
#ifdef WITH_DMALLOC
|
#ifdef WITH_DMALLOC
|
||||||
#include <dmalloc.h>
|
#include <dmalloc.h>
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
/* @(#) Calculate dECMC from two Lab images
|
/* im_dECMC_fromLab.c
|
||||||
* @(#)
|
*
|
||||||
* @(#) Usage:
|
|
||||||
* @(#) im_dECMC_fromLab( im1, im2, im_out )
|
|
||||||
* @(#) IMAGE *im1, *im2, *im_out;
|
|
||||||
* @(#)
|
|
||||||
* @(#) float out.
|
|
||||||
* @(#)
|
|
||||||
* @(#) Returns: -1 on error, else 0
|
|
||||||
* 5/8/98 JC
|
* 5/8/98 JC
|
||||||
* - oops, wasn't testing input args correctly
|
* - oops, wasn't testing input args correctly
|
||||||
|
* 30/10/09
|
||||||
|
* - use im__colour_binary()
|
||||||
|
* - gtkdoc comment
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -42,10 +38,8 @@
|
|||||||
#endif /*HAVE_CONFIG_H*/
|
#endif /*HAVE_CONFIG_H*/
|
||||||
#include <vips/intl.h>
|
#include <vips/intl.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#include <vips/vips.h>
|
#include <vips/vips.h>
|
||||||
|
#include <vips/internal.h>
|
||||||
|
|
||||||
#ifdef WITH_DMALLOC
|
#ifdef WITH_DMALLOC
|
||||||
#include <dmalloc.h>
|
#include <dmalloc.h>
|
||||||
@ -75,36 +69,25 @@ imb_dECMC_fromLab( float **p, float *q, int n )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* im_dECMC_fromLab:
|
||||||
|
* @in1: first input image
|
||||||
|
* @in2: second input image
|
||||||
|
* @out: output image
|
||||||
|
*
|
||||||
|
* Calculate dE CMC from two Lab images.
|
||||||
|
*
|
||||||
|
* Returns: 0 on success, -1 on error.
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
im_dECMC_fromLab( IMAGE *im1, IMAGE *im2, IMAGE *out )
|
im_dECMC_fromLab( IMAGE *in1, IMAGE *in2, IMAGE *out )
|
||||||
{
|
{
|
||||||
IMAGE *invec[3];
|
if( im__colour_binary( "im_dECMC_fromLab",
|
||||||
|
in1, in2, 1, out,
|
||||||
/* Check input types.
|
|
||||||
*/
|
|
||||||
if( im1->Bands != 3 || im1->BandFmt != IM_BANDFMT_FLOAT ||
|
|
||||||
im1->Coding != IM_CODING_NONE ||
|
|
||||||
im2->Bands != 3 || im2->BandFmt != IM_BANDFMT_FLOAT ||
|
|
||||||
im2->Coding != IM_CODING_NONE ) {
|
|
||||||
im_error( "im_dECMC_fromLab", "%s", _( "3-band float only" ) );
|
|
||||||
return( -1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Prepare the output image
|
|
||||||
*/
|
|
||||||
if( im_cp_descv( out, im1, im2, NULL ) )
|
|
||||||
return( -1 );
|
|
||||||
out->Bbits = IM_BBITS_FLOAT;
|
|
||||||
out->Bands = 1;
|
|
||||||
out->BandFmt = IM_BANDFMT_FLOAT;
|
|
||||||
out->Type = IM_TYPE_B_W;
|
|
||||||
|
|
||||||
/* Do the processing.
|
|
||||||
*/
|
|
||||||
invec[0] = im1; invec[1] = im2; invec[2] = NULL;
|
|
||||||
if( im_wrapmany( invec, out,
|
|
||||||
(im_wrapmany_fn) imb_dECMC_fromLab, NULL, NULL ) )
|
(im_wrapmany_fn) imb_dECMC_fromLab, NULL, NULL ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
|
out->Type = IM_TYPE_B_W;
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,11 @@
|
|||||||
/* @(#) Calculate dE (CIELAB standard) from two LAB images.
|
/* im_dE_fromLab.c
|
||||||
* @(#)
|
*
|
||||||
* @(#) Usage:
|
|
||||||
* @(#) im_dE_fromLab( im1, *im2, im_out )
|
|
||||||
* @(#) IMAGE *im1, *im2, *im_out;
|
|
||||||
* @(#)
|
|
||||||
* @(#) float out.
|
|
||||||
* @(#)
|
|
||||||
* @(#) Returns: -1 on error, else 0
|
|
||||||
* Modified:
|
* Modified:
|
||||||
* 16/11/94 JC
|
* 16/11/94 JC
|
||||||
* - partialed!
|
* - partialed!
|
||||||
|
* 31/10/09
|
||||||
|
* - use im__colour_binary()
|
||||||
|
* - gtkdoc comment
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -43,10 +39,8 @@
|
|||||||
#endif /*HAVE_CONFIG_H*/
|
#endif /*HAVE_CONFIG_H*/
|
||||||
#include <vips/intl.h>
|
#include <vips/intl.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#include <vips/vips.h>
|
#include <vips/vips.h>
|
||||||
|
#include <vips/internal.h>
|
||||||
|
|
||||||
#ifdef WITH_DMALLOC
|
#ifdef WITH_DMALLOC
|
||||||
#include <dmalloc.h>
|
#include <dmalloc.h>
|
||||||
@ -62,56 +56,33 @@ imb_dE_fromLab( float **p, float *q, int n )
|
|||||||
int x;
|
int x;
|
||||||
|
|
||||||
for( x = 0; x < n; x++ ) {
|
for( x = 0; x < n; x++ ) {
|
||||||
float L1 = p1[0];
|
q[x] = im_col_pythagoras(
|
||||||
float a1 = p1[1];
|
p1[0], p1[1], p1[2], p2[0], p2[1], p2[2] );
|
||||||
float b1 = p1[2];
|
|
||||||
float L2 = p2[0];
|
|
||||||
float a2 = p2[1];
|
|
||||||
float b2 = p2[2];
|
|
||||||
float dL, da, db;
|
|
||||||
|
|
||||||
p1 += 3;
|
p1 += 3;
|
||||||
p2 += 3;
|
p2 += 3;
|
||||||
|
|
||||||
dL = L1 - L2;
|
|
||||||
da = a1 - a2;
|
|
||||||
db = b1 - b2;
|
|
||||||
|
|
||||||
*q++ = sqrt( dL*dL + da*da + db*db );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* im_dE_fromLab:
|
||||||
|
* @in1: first input image
|
||||||
|
* @in2: second input image
|
||||||
|
* @out: output image
|
||||||
|
*
|
||||||
|
* Calculate CIE dE 1976 from two Lab images.
|
||||||
|
*
|
||||||
|
* Returns: 0 on success, -1 on error.
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
im_dE_fromLab( IMAGE *im1, IMAGE *im2, IMAGE *out )
|
im_dE_fromLab( IMAGE *in1, IMAGE *in2, IMAGE *out )
|
||||||
{
|
{
|
||||||
IMAGE *invec[3];
|
if( im__colour_binary( "im_dE_fromLab",
|
||||||
|
in1, in2, 1, out,
|
||||||
/* Check input image.
|
|
||||||
*/
|
|
||||||
if( im1->Bands != 3 || im1->BandFmt != IM_BANDFMT_FLOAT ||
|
|
||||||
im1->Coding != IM_CODING_NONE ||
|
|
||||||
im2->Bands != 3 || im2->BandFmt != IM_BANDFMT_FLOAT ||
|
|
||||||
im2->Coding != IM_CODING_NONE ) {
|
|
||||||
im_error( "im_dE_fromLab", "%s",
|
|
||||||
_( "inputs should be 3 band float") );
|
|
||||||
return( -1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Prepare the output image
|
|
||||||
*/
|
|
||||||
if( im_cp_descv( out, im1, im2, NULL ) )
|
|
||||||
return( -1 );
|
|
||||||
out->Bbits = IM_BBITS_FLOAT;
|
|
||||||
out->Bands = 1;
|
|
||||||
out->BandFmt = IM_BANDFMT_FLOAT;
|
|
||||||
out->Type = IM_TYPE_B_W;
|
|
||||||
|
|
||||||
/* Do the processing.
|
|
||||||
*/
|
|
||||||
invec[0] = im1; invec[1] = im2; invec[2] = NULL;
|
|
||||||
if( im_wrapmany( invec, out,
|
|
||||||
(im_wrapmany_fn) imb_dE_fromLab, NULL, NULL ) )
|
(im_wrapmany_fn) imb_dE_fromLab, NULL, NULL ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
|
out->Type = IM_TYPE_B_W;
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user