O*******d 发帖数: 20343 | 1 现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写,
就是太麻烦了. | D*******a 发帖数: 3688 | 2 可以参考imagemagick的源码
写,
【在 O*******d 的大作中提到】 : 现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写, : 就是太麻烦了.
| d*****l 发帖数: 8441 | 3 自己写不麻烦吧.
别人的东西拿来可能太大了, 太一般, 作许多额外的东西.
写,
【在 O*******d 的大作中提到】 : 现在要把一个RGB图象缩小到任意的尺寸,到哪里可以找到C/C++的源码? 我自己也能写, : 就是太麻烦了.
| O*******d 发帖数: 20343 | 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 | d*****l 发帖数: 8441 | 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; : } : /*************************************************************************** : **
|
|