Problem
A color reduction is a mapping from a set of discrete colors to a smaller one. The solution to this problem requires that you perform just such a mapping in a standard twenty-four bit RGB color space. The input consists of a target set of sixteen RGB color
values, and a collection of arbitrary RGB colors to be mapped to their closest color in the target set. For our purposes, an RGB color is defined as an ordered triple (R,G,B) where each value of the triple is an integer from 0 to 255. The distance between
two colors is defined as the Euclidean distance between two three-dimensional points. That is, given two colors (R1,G1,B1) and (R2,G2,B2), their distance D is given by the equation
![]()
The input file is a list of RGB colors, one color per line, specified as three integers from 0 to 255 delimited by a single space. The first sixteen colors form the target set of colors to which the remaining colors will be mapped. The input is terminated by a line containing three -1 values.
Output
For each color to be mapped, output the color and its nearest color from the target set.
Example
Input
0 0 0
255 255 255
0 0 1
1 1 1
128 0 0
0 128 0
128 128 0
0 0 128
126 168 9
35 86 34
133 41 193
128 0 128
0 128 128
128 128 128
255 0 0
0 1 0
0 0 0
255 255 255
253 254 255
77 79 134
81 218 0
-1 -1 -1
Output
(0,0,0) maps to (0,0,0)
(255,255,255) maps to (255,255,255)
(253,254,255) maps to (255,255,255)
(77,79,134) maps to (128,128,128)
(81,218,0) maps to (126,168,9)
题意:先输入16个RGB数,再让16个RGB数之后,3个-1之前的几个RGB数分别跟16个RGB数求距离,找到16个RGB
数中距离最小的RGB数。
代码:
#include <stdio.h>
#include <math.h>
#define N 16
int compare(float c[])
{
int i;
int k=0;
int min=c[0];
for(i=0;i<N;i++)
{
if(min>c[i])
{
min=c[i];
k=i;
}
}
return k;
}
int main()
{
float a[N][3];
float b[100][3];
float c[N];
int n=0,m=0;
int i,j,k;
for(i=0;i<N;i++)
for(j=0;j<3;j++)
scanf("%f",&a[i][j]);
for(i=0;i<100;i++)
{
for(j=0;j<3;j++)
scanf("%f",&b[i][j]);
if((b[i][0]==-1)&&(b[i][1]==-1)&&(b[i][2]==-1))
break;
}
n=i;
for(i=0;i<n;i++)
{
for(j=0;j<N;j++)
{
for(k=0;k<3;k++)
c[j]+=pow(a[j][k]-b[i][k], 2);
c[j]=sqrt(c[j]);
}
m=compare(c);
printf("(%d,%d,%d) maps to (%d,%d,%d)\n",(int)b[i][0],(int)b[i][1],(int)b[i][2],(int)a[m][0],(int)a[m][1],(int)a[m][2]);
}
return 0;
}
本文介绍了一种颜色映射算法,该算法将任意RGB颜色映射到预定义的16种目标颜色之一。通过计算每种颜色间的欧几里得距离来确定最接近的颜色。文章提供了一个实现此功能的C语言程序示例。
884

被折叠的 条评论
为什么被折叠?



