-
WebRTC中实现了Floyd-Steinberg抖动算法
资源介绍
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
> >
- 上一篇: WebRtc视频聊天demo包括多人聊天
- 下一篇: WEBRTC多人视频通话