Changeset 2014
- Timestamp:
- Nov 17, 2007, 4:02:59 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/study/part2.html
r2013 r2014 113 113 114 114 <p> Different matrices can give very different results. This is a 4×4 115 Bayer ordered dithering matrix: </p>115 <b>Bayer ordered dither matrix</b>: </p> 116 116 117 117 <p style="text-align: center;"> … … 135 135 </p> 136 136 137 <p> This 4×4 cluster dot matrixcreates dot patterns: </p>137 <p> This 4×4 <b>cluster dot matrix</b> creates dot patterns: </p> 138 138 139 139 <p style="text-align: center;"> … … 190 190 </p> 191 191 192 <p> This is random dithering with threshold values chosen with a gaussian193 distribution (mean 0.5, standard deviation 0.15): </p>192 <p> This is random dithering with threshold values chosen with a <b>gaussian 193 distribution</b> (mean 0.5, standard deviation 0.15): </p> 194 194 195 195 <p style="text-align: center;"> … … 202 202 <p> Random dithering can help reduce the major problem caused by halftoning, 203 203 which is the apparition of pattern artifacts. The method is as simple as 204 slightly perturbating matrix coefficients (or pixel values) during the 205 halftoning step. The difficult part is the proper pertubation choice. </p> 204 <b>slightly perturbating dither matrix coefficients</b> (or pixel values) 205 during the halftoning step. The difficult part is picking up an adequate 206 perturbation function: too much perturbation and the result is unrecognisable, 207 too little and the artifacts stay. </p> 206 208 207 209 <p> For instance, this is the result of 8×8 Bayer dithering perturbated by a … … 216 218 217 219 <p> Another way to use random number generators to avoid pattern artifacts 218 is random dither matrix selection. The image space is no longer tiled with219 the same matrix over and over again, but with a random selection from a list 220 of similar dither matrices. </p>220 is <b>random dither matrix selection</b>. The image space is no longer tiled 221 with the same matrix over and over again, but with a random selection from a 222 list of similar dither matrices. </p> 221 223 222 224 <p> This example shows random matrix selection from a list of six 3×3 dither
Note: See TracChangeset
for help on using the changeset viewer.