Results 1 to 6 of 6

Thread: Interpolation

  1. #1

    Interpolation

    Is it possible in Direct X 8.1 ?
    If so how ?
    -AOTA Head Programmer
    <br />www.aotaonline.com
    <br />LiquidIce@aotaonline.om

  2. #2

    Interpolation

    What do you mean by interpolation specifically? You can do texture interpolation, but I'm not sure that's what you are asking for...

  3. #3

    Interpolation

    Quote Originally Posted by Lifepower
    What do you mean by interpolation specifically? You can do texture interpolation, but I'm not sure that's what you are asking for...
    For example, in SNES they use like Kreed's Super2x Sal .

    Here is a screen shot without interpolation:
    http://www.aotaonline.com/nointerpolation.gif

    And here is one with it:
    http://www.aotaonline.com/interpolation.gif

    I saw something like it when resizing DX surface (image gets stretched), but it is not quite of what I am looking for.
    -AOTA Head Programmer
    <br />www.aotaonline.com
    <br />LiquidIce@aotaonline.om

  4. #4

    Interpolation

    I could be wrong, but are you looking for anti-aliasing routines?
    <br /><br />There are a lot of people who are dead while they are still alive. I want to be alive until the day I die.<br />-= Paulo Coelho =-

  5. #5

    Interpolation

    It's not clear from images you have proveded (because of color quantization in GIF format), but seems what it's linear filtering of lower resolution image to higher resolution screen. And it can be done with DirectDraw by stretching and in Direct3D by providing enlarged desting rect during Present (or by using render to texture technique for advanced processing).
    There are only 10 types of people in this world; those who understand binary and those who don't.

  6. #6

    Interpolation

    2xSAI is a very cool algorythm which doubles the size of the image and interpolates it(calculates mising pixels) through special line and edge detection rutines which make it less blurry compared to simple bilinear filtering. Check out its creators homepage http://elektron.its.tudelft.nl/~dalikifa/. It's great for emulators which emulate low resolution consoles, but is a bit slow and i have no idea why would you want to use it for something else. It has nothing to do with directx, but you could implement it by hand.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •