由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 缩小图象的程序
相关主题
Wget 提交form的问题请教 一个matlab画图的问题
C++里有没有实现interpolation的函数?[合集] 我也花了一小时读了一下python
图象处理求助[合集] 我来问一个matlab的弱问题
[合集] 学了很久C/C++,就为什么总是学不深呢。如何用’sed‘ comment out 某一行。
C++在linux下读一次系统时间要多少时间matlab编程问题求助
我最近写的一个屏保程序c++ floating point calculation problem (revised)
一道算法题求教,现在哪些script最流行?
Extrapolation in Python?什么算法可以比较2段曲线的相似度?
相关话题的讨论汇总
话题: double话题: size话题: width话题: height话题: factor
进入Programming版参与讨论
1 (共1页)
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;
: }
: /***************************************************************************
: **

1 (共1页)
进入Programming版参与讨论
相关主题
什么算法可以比较2段曲线的相似度?C++在linux下读一次系统时间要多少时间
recurvion真的很难懂~~我最近写的一个屏保程序
从马航这事来看,big data还只是传说一道算法题求教,
How to find the best fit dimension of Polynomial interpolation/curve fitting ?Extrapolation in Python?
Wget 提交form的问题请教 一个matlab画图的问题
C++里有没有实现interpolation的函数?[合集] 我也花了一小时读了一下python
图象处理求助[合集] 我来问一个matlab的弱问题
[合集] 学了很久C/C++,就为什么总是学不深呢。如何用’sed‘ comment out 某一行。
相关话题的讨论汇总
话题: double话题: size话题: width话题: height话题: factor