13
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptで画像処理 - モザイク処理

Last updated at Posted at 2018-01-18

#イメージ
左がモザイク前、右がモザイク後です。
image.png

#サンプル
画像ファイル選択後に、mosaicボタンを押してください。

See the Pen mosaic by Shinichiro Maki (@olj611) on CodePen.

#モザイク処理のロジック ![mosaic.png](https://qiita-image-store.s3.amazonaws.com/0/163605/c8284f33-d06e-af74-e40a-7c9aa2676edd.png) 上図は幅9、高さ5の画像の画像をモザイク幅2,モザイク高さ2で処理する時のイメージ図です。 モザイク矩形のピクセルの平均色で塗りつぶすだけです。 #ImageDataオブジェクト サンプルプログラムではImageDataオブジェクトを使用しています。 画像処理ではバッファを直接いじることになるので、ImageDataの利用は必須です。 ご存知でない方はこちらを参照してください。
13
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?