登录 注册
当前位置:主页 > 资源下载 > 5 > WebRTC中实现了Floyd-Steinberg抖动算法

WebRTC中实现了Floyd-Steinberg抖动算法

  • 更新:2024-09-08 10:45:14
  • 大小:3KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

WebRTC_Floyd_Steinberg_dithering 使用纯 JavaScript 在 WebRTC 中实现 Floyd-Steinberg 抖动算法 在 [ ] 上查找更多信息 伪代码: > for each y from top to bottom > > for each x from left to right > > > oldpixel := pixel[x][y] > > > newpixel := find_closest_palette_color(oldpixel) > > > pixel[x][y] := newpixel > > > quant_error := oldpixel - newpixel > > > pixel[x+1][y ] := pixel[x+1][y ] + quant_error * 7/16 > >