Changes

Jump to navigation Jump to search

Texture filtering

5,237 bytes added, 29 February
Types of Texture Filtering
[[File:Nearest_Neighbor_2x_versus_HQ2x.png|thumb|300px|A comparison between nearest neighbor scaling and HQ2x scaling]]
:''This article is about smoothing techniques that may be present even on original hardware. For the process of replacing textures to improve their visual fidelity or other aesthetic reasons, see [[Texture Packs]].''
In computer graphics, '''texture [[wikipedia:Texture filtering|Texture filtering]]''' or texture smoothing is refers to the method methods used to smooth the textures used in of a 3D modelsmodel. Some consoles use texture filteringEvery home console after the [[Nintendo 64 emulators|Nintendo 64]] is able to do it, including every modern PC and Android deviceIn This makes it useful in emulation, texture filtering where it can be applied even if the original console to emulators for consoles that did not use originally have it. Many through various emulators that support such featuresit.
==Consoles==
   {| border="0" cellpadding="1" cellspacingclass="1wikitable" classstyle="article-table article-tabletext-selectedalign:center;"
! scope="col"|Console
! scope="col" style="text-align: center;"|Texture Filtering! scope="col" style="text-align: center;"|Types of filtering
|-
|[[Super Nintendo]]| style="text-align: centerleft;"|[[Super Nintendo emulators|Super Nintendo]]|{{}}| style="text-align: center;"|
|-
|[[3DO]]| style="text-align: centerleft;"|[[3DO emulators|3DO]]|{{}}| style="text-align: center;"|?
|-
|[[Atari Jaguar]]| style="text-align: centerleft;"|[[Atari Jaguar emulators|Atari Jaguar]]|{{}}| style="text-align: center;"|
|-
|[[Sega Saturn]]| style="text-align: centerleft;"|[[Sega Saturn emulators|Sega Saturn]]|{{}}| style="text-align: center;"|
|-
|[[PlayStation]]| style="text-align: centerleft;"|[[PlayStation emulators|PlayStation]]|{{}}| style="text-align: center;"|
|-
|[[Nintendo 64]]| style="text-align: centerleft;"|[[Nintendo 64 emulators|Nintendo 64]]|{{}}| style="text-align: center;"|Three-sample bilinear
|-
|[[Sega Dreamcast]]| style="text-align: centerleft;"|[[Sega Dreamcast emulators|Sega Dreamcast]]|{{}}| style="text-align: center;"|Bilinear, trilinear, anisotropic
|-
|[[PlayStation 2]]| style="text-align: centerleft;"|[[PlayStation 2 emulators|PlayStation 2]]|{{}}| style="text-align: center;"|Bilinear, trilinear, Anisotropic
|-
|[[Gamecube|GameCube]]| style="text-align: centerleft;"|[[GameCube emulators|GameCube]]|{{}}| style="text-align: center;"|Bilinear, trilinear, anisotropic
|-
|[[Xbox]]| style="text-align: centerleft;"|[[Xbox emulators|Xbox]]|{{}}| style="text-align: center;"|Bilinear, trilinear, anisotropic
|-
|[[Nintendo DS]]| style="text-align: centerleft;"|[[Nintendo DS emulators|Nintendo DS]]|{{}}| style="text-align: center;"|?
|-
|[[PlayStation Portable]]| style="text-align: centerleft;"|[[PlayStation Portable emulators|PlayStation Portable]]|{{}}| style="text-align: center;"|Bilinear, trilinear
|-
|[[Wii]]| style="text-align: centerleft;"|[[Wii emulators|Wii]]|{{}}| style="text-align: center;"|Bilinear, trilinear, anisotropic
|}
==Typesof Texture Filtering=====Nearest neighbor===[[Image:Snes-nearest.png|left|200px|thumb|SNES game with 'nearest' filter]]
{| class="wikitable" style="text-align:center;"! scope="col"|Filtering type! scope="col"|What it does! scope="col"|Pros! scope="col"|Cons|-|'''Nearestneighbor'''|This method sorts pixels into the nearest place relevant to its placement in the original resolution, in order to display the image at whatever resolution you specify.|*Very fast. *At integer values (eg, exactly double or quadruple resolution) it's practically "unfiltered".|*Unfiltered pixels tend to look odd, with some being thicker than others. This can result in pixel art losing clarity, and text may become hard to read.|-|'''Bilinear'''|This linear filtering method uses color data from the pixels in a nearest-neighbor texture, and combines multiple bits of color data in order to replace some of the pixels with mipmapping===an averaged-out version of the colors, so that the colors gradually switch rather than jump to a new color.|*Looks better than nearest neighbor for 3D games.*It's the least system-intensive form of texture filtering/scaling.|*At low resolutions, 2D games tend to become very blurry. This is especially noticeable in 2D games, and low res 3D games.*If you have the hardware to do so, look into more complex filtering methods to preserve clarity.|-|'''Trilinear'''|This linear filtering method does the same thing as bilinear filtering, but additionally interpolates between mipmaps (downscaled versions of the texture used for far away objects), thereby preventing mipmap banding (harsh transitions between mipmap levels).|*Looks better than bilinear filtering for 3D games.|*As with bilinear, low-resolution games will more than likely appear overly blurry using this method.|-|'''HQx'''|A texture scaling algorithm. Scales up a nearest-neighbor version of the texture and fills in the gaps with copies of the pixels next to said gaps.|*While it is inherently destructive, some games (eg. Yoshi's Island) may benefit from this filter, as it preserves the cartoony look.|*Artifacts are common.*Curves and slopes that aren't 45­° look jagged compared to everything else.*The finer details of the textures/sprites might be obscured by bad edge detection.*Posterization is very common. There are deposterization filters in some emulators (e.g. PPSSPP) that can aid this, however.*Worse at some things that xBR excels at.|-|'''2xSaI'''|A texture scaling algorithm. Scales the texture and fills edges in with a mixture of pixels taken from the source and randomly-guessed colors.|*Less system-intensive than HQx and xBR.*Adequate if it's the best option available (e.g. in Pete's OpenGL2 plugin for PSX emulators).|*Edge detection is horrible.*Artifacts are common.*Posterization is very common.*Archaic. The alternatives are much better.|-|'''xBR'''|A modified version of HQx. It detects edges better, which works better for curved lines, or for slopes that are greater than/less than 45 degrees.|*Looks great for many 2D games.*Edge detection is improved over HQx. This gives textures smoother curves and slopes, as well as fewer artifacts.*3D games look great with it as well.|*Posterization is common. There are deposterization filters in some emulators (e.g. PPSSPP) that can aid this, however.*The finer details of the textures/sprites might be obscured by bad edge detection.*Worse at some things that HQx excels at.|-|'''xBRZ'''|A modified version of xBR, which is very similar except it's better at scaling up smaller features consisting of <10 pixels.|*Looks great for many 2D games.*Detects small features that get messed up by HQx and xBR.*3D games look great with it as well.|*Posterization is common. There are deposterization filters in some emulators (e.g. PPSSPP) that can aid this, however.*Worse at some things the other scalers excel at.|}
==Durante's Hybrid and Deposterization Filters for PPSSPP==
===Bilinear======Trilinear======Linear======Linear PPSSPP has a scaling option known as "Hybrid." There's also an option called "Deposterize." Posterization, meaning a sharp contrast in hue from one pixel to another (cgvery common in low-quality gifs)======Anisotropic======has been a problem plaguing texture scaling algorithms for quite some time. Durante's filter switches between xBR===and bilinear/bicubic filtering depending on the texture information. On top of this, the "Deposterize" option tackles posterization edges in compressed textures, allowing for a smooth gradient rather than a sharp transition. Although it's not perfect (a perfect scaler sadly isn't possible with today's computing power) it's still great and it's recommended to use for PPSSPP if you have the specs.
==Images==
<gallery columns="2" captionalign="center" widths="180" position="center" bordersize="none">|link=http://images.wikia.com/emulation-general/images/f/fc/SnesPsp-nearestlinear2.pngjpg|PSP game with linear filteringSnesPsp-linearnearest2.pngjpg|SNES PSP game with 'linear' filter|link=http://images.wikia.com/emulation-general/images/2/2f/Snesnearest neighborPsp-linearxbr2.pngjpg|PSP game with 3xBR texture scaling
</gallery>
<gallery captionalign="center" position="center" bordersize="none" captionsizecaptionalign="medium" captionposition="belowcenter">PspN64-linearbilinear2.png|PSP N64 game with 'linear' filtering|link=http://images.wikia.com/emulation-general/images/6/61/Pspat native internal resolution (using SoftGraphic plugin)N64-linearbilinear.png|N64 game upscaled with bilinear filtering (using Glide64 plugin)PspN64-nearest.png|PSP N64 game upscaled with 'nearest' filtering|linkneighbor (using Glide64 plugin)</gallery><gallery columns="2" captionalign="center" widths="180" position="center" bordersize=http://images.wikia.com/emulation-general/images/e/ec/Psp"none">Snes-nearest.png|SNES game with nearest neighborPspSnes-xbrlinear.png|PSP SNES game with 'xBR' linear filtering|link</gallery><gallery columns="2" captionalign="center" widths="180" position="center" bordersize=http://images"none">Super_Mario_All-Stars_with_nearest_neighbor.wikiapng|SNES game with nearest neighborSuper_Mario_All-Stars_with_hq4x.com/emulationpng|SNES game with HQ4x texture scalingSuper_Mario_All-general/images/5/58/Psp-xbrStars_with_5xBR.png|SNES game with 5xBR texture scaling
</gallery>
 
==Further reading==
* [https://web.archive.org/web/20140904180543/http://board.byuu.org/viewtopic.php?f=10&t=2248 Forum post from the creator of xBR, explaining how the algorithm works] (Warning: is slightly hard to read due to the amount of jargon and big words)
* [http://blog.metaclassofnil.com/?p=306 A blog entry by Durante on creating a hybrid texture filter for PPSSPP.]
http://en.wikipedia.org/wiki/Texture_filtering
[[Category:FAQs]]
Anonymous user

Navigation menu