https://github.com/suconbu/imagescaling
画像拡縮アルゴリズム比較
https://github.com/suconbu/imagescaling
Last synced: 11 months ago
JSON representation
画像拡縮アルゴリズム比較
- Host: GitHub
- URL: https://github.com/suconbu/imagescaling
- Owner: suconbu
- Created: 2018-05-19T16:55:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-19T15:53:00.000Z (over 6 years ago)
- Last Synced: 2025-03-22T11:28:17.749Z (over 1 year ago)
- Language: HTML
- Homepage: https://suconbu.github.io/imagescaling/
- Size: 1.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# imagescaling
画像拡縮アルゴリズムの見た目比較ツール
### 対応アルゴリズム
- Nearest neighbor
- Bilinear
- Bicubic
- LanczosN
- Spline16,36
### スクリーンショット

### 操作方法
| 操作 | 説明 |
| -- | -- |
| 矢印キー左右 | 画像を切り替える |
| 画像をクリック | ポップアップをキープする |
| アルゴリズム名(bilinearなど)をダブルクリック | そのアルゴリズムを非表示にする |
### メモ
画像や倍率はこのあたりで変更できます。
```javascript
// imagescaling.html
const resizeFunctionMap = {
//nearest: {func: resizeByNearest, parameter: null},
bilinear: {func: resizeByBilinear, parameter: null},
bicubic: {func: resizeByBiqubic, parameter: null},
// lanczos2: {func: resizeByLanczos, parameter: 2},
lanczos3: {func: resizeByLanczos, parameter: 3},
spline16: {func: resizeBySpline, parameter: 2},
spline36: {func: resizeBySpline, parameter: 3},
}
const resizeRatios = [1.0, 1.3, 1.7, 2.0, 2.3, 2.7, 3.0];
```