From 599c8ea096e0ee40b76afc105958abdcc749a911 Mon Sep 17 00:00:00 2001 From: TimothyLottes Date: Wed, 16 Nov 2016 23:44:21 -0500 Subject: [PATCH] Add files via upload --- 20081218.html | 10 ++++++++++ index.html | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 20081218.html diff --git a/20081218.html b/20081218.html new file mode 100644 index 0000000..98262ce --- /dev/null +++ b/20081218.html @@ -0,0 +1,10 @@ +
+

20081218 - Reprojection 2

+
+Recirculation Motion Blur Update +
+Doing a few prototypes an evening now. Found better results by adding in motion blur and returning to an earlier idea. New best found solution does a hole filling pass on the new data weighted by a function of projected point size and depth (this "quality factor" is stored in the Alpha channel), so smaller more detailed front most points override larger or more distant points. Currently just doing a 1x1:1 -> 4x4:1 -> 16x16:1 reduction followed by a 16x16:1 -> 4x4:1 -> 1x1:1 expansion for the hole filling (planning on trying a higher quality 1/2 reduction/expansion instead of the 1/4 size later). Then for reprojection I blend between two motion blured colors. The first is sampled from the hole filled buffer using pixel offset plus (-0.25,0.0,0.25) times the motion vector. The second is sampled from the reprojection buffer using the reprojection position with the same offsets. So 6 texture fetches total for the color blur. The blend lerp() is weighted by the proportion of the new and reprojected "quality factor" and is clamped to a set range to insure less noise. The reprojected "quality factor" is reduced by a function of motion vector length and recirculated to insure that under motion, the screen gets more quickly updated. + +
+ + diff --git a/index.html b/index.html index 87100ce..6220aee 100644 --- a/index.html +++ b/index.html @@ -311,6 +311,9 @@ and attempting to restore what I can from prior lost images.
20090110 - Hole Filling

+2008
+20081218 - Reprojection 2
+
2007
20071026 - Transform Feedback
20071025 - Motion Cards