avatar
缩小图象的程序# Programming - 葵花宝典
O*d
1
现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写,
就是太麻烦了.
avatar
D*a
2
可以参考imagemagick的源码

写,

【在 O*******d 的大作中提到】
: 现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写,
: 就是太麻烦了.

avatar
d*l
3
自己写不麻烦吧.
别人的东西拿来可能太大了, 太一般, 作许多额外的东西.

写,

【在 O*******d 的大作中提到】
: 现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写,
: 就是太麻烦了.

avatar
O*d
4
找到的package都太麻烦使用. 自己写了一个, 工作很好. 分成两步.
If source width or height is greater than targe width * 2 or target height *
2, reduce by half till the source width and height are within 2x of target
size. Then use bilinear interpolation to reduce size further to target size.
static double interpolate(double a, double b, double factor)
{
return (1.0 - factor) * a + factor * b;
}
/***************************************************************************
**
Use bilinear
avatar
d*l
5
看, 还是自己写最好吧.
得, 自问自答了.

*
size.
**

【在 O*******d 的大作中提到】
: 找到的package都太麻烦使用. 自己写了一个, 工作很好. 分成两步.
: If source width or height is greater than targe width * 2 or target height *
: 2, reduce by half till the source width and height are within 2x of target
: size. Then use bilinear interpolation to reduce size further to target size.
: static double interpolate(double a, double b, double factor)
: {
: return (1.0 - factor) * a + factor * b;
: }
: /***************************************************************************
: **

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。