Better motionblur shader (2024)

  • NoMansReshade
  • Better motionblur shader (1)Topic Author

More

7 years 11 months ago - 7 years 11 months ago#1by NoMansReshadeBetter motionblur shader was created by NoMansReshade

From what I understand, reshade only has access to the current frame and the previous frame (correct me if I'm wrong). That being said, is it possible to make decent looking motionblur like the one seen in unreal engine 4? I'm no professional shader coder, but I can see that "traditional" motionblur methods use either motion vectors, or multiple frames (5 frames back or more etc.). The shader included with reshade 3.0 works as intended, however the resulting image ends up making me look drunk.

Drunk Example

Motionblur Example

Sorry for the poor examples, but hopefully you get what I am trying to say! This happens because of either the lack of resources reshade has access to, or because of the shader implementation. Any info is greatly appreciated!

Last edit: 7 years 11 months ago by NoMansReshade.

Please Log in or Create an account to join the conversation.

  • Insomnia
  • Better motionblur shader (2)

More

7 years 11 months ago#2by InsomniaReplied by Insomnia on topic Better motionblur shader

I agree with you. What I want is a depth dependant motion blur shader that either blurs pixels close to camera, or vice versa.

Please Log in or Create an account to join the conversation.

  • GP-Unity
  • Better motionblur shader (3)

More

7 years 11 months ago#3by GP-UnityReplied by GP-Unity on topic Better motionblur shader

Many of us would like to see a great motion blur shader. Reshade however, doesn't have access to the previous frame(s). It's the same reason temporal anti-aliasing can't be implemented. Remember, Reshade in its current state can only work with the current frame, which means it doesn't know where to apply blur.

Please Log in or Create an account to join the conversation.

  • Insomnia
  • Better motionblur shader (4)

More

7 years 11 months ago#4by InsomniaReplied by Insomnia on topic Better motionblur shader

But since ReShade has access to depth buffers shouldn't it be possible to use the depth buffer to apply motion blur close to camera like in UE4?
Screen based depth dependant motion blur, so to say. Not object based.

Please Log in or Create an account to join the conversation.

  • crosire
  • Better motionblur shader (5)

More

7 years 11 months ago - 7 years 11 months ago#5by crosireReplied by crosire on topic Better motionblur shader

GP-Unity wrote: Many of us would like to see a great motion blur shader. Reshade however, doesn't have access to the previous frame(s). It's the same reason temporal anti-aliasing can't be implemented. Remember, Reshade in its current state can only work with the current frame, which means it doesn't know where to apply blur.

That's not true. It's possible to get access to previous frames. The current "Motion Blur" shaders does exactly that, or else it wouldn't work at all. But that is not what you need for true motion blur. True motion blur only applies to objects that actually move and does not apply to objects that are static. This information is not available. Some games store it in some form of a velocity buffer and therefore can do proper motion blur. But as said, ReShade does not have access to that data.

Last edit: 7 years 11 months ago by crosire.

The following user(s) said Thank You: GP-Unity

Please Log in or Create an account to join the conversation.

  • GP-Unity
  • Better motionblur shader (6)

More

7 years 11 months ago#6by GP-UnityReplied by GP-Unity on topic Better motionblur shader

Oh right apologies for lack of knowledge and thanks for clearing that up.

Please Log in or Create an account to join the conversation.

  • Ederer
  • Better motionblur shader (7)

More

7 years 11 months ago - 7 years 11 months ago#7by EdererReplied by Ederer on topic Better motionblur shader

It's possible to generate a motion vector / velocity buffer by tracking the motion of the rgb pixels (between the current and the previous frame).

Compositing software like Nuke or AfterEffects can do that with any video or image sequence.

Here is an example on youtube of how the (commercial) After Effects plugin "ReelSmart Motion Blur" looks on recorded game footage:
(go to 1min20s)

It's not as accurate as using the velocity buffer the game engine would provide, e.g. there will probably be some artifacts, but it's usually quite convincing.

This is just a 2d post effect, there is no need to access the objects or cameras 3d-position.
So i guess in theory it would be possible to write such a shader for reshade, not sure about the fps hit though.... Better motionblur shader (8)

I'm not a coder, but maybe this helps:
opencv-python-tutroals.readthedocs.io/en...py_lucas_kanade.html

Last edit: 7 years 11 months ago by Ederer.

The following user(s) said Thank You: Insomnia

Please Log in or Create an account to join the conversation.

  • Insomnia
  • Better motionblur shader (9)

More

7 years 11 months ago#8by InsomniaReplied by Insomnia on topic Better motionblur shader

That looks amazing for being a post effect!!

Please Log in or Create an account to join the conversation.

7 years 11 months ago - 7 years 11 months ago#9by GP-UnityReplied by GP-Unity on topic Better motionblur shader

Familiar with this effect (after effects' rsmb) and it is why i thought Reshade only read the current frame. Good to know this is possible. If we can implement this (unfortunately demanding) effect, even games without depth buffer access can receive a good motion blur implementation.

Last edit: 7 years 11 months ago by GP-Unity.

Please Log in or Create an account to join the conversation.

  • Elimina
  • Better motionblur shader (11)

More

7 years 10 months ago#10by EliminaReplied by Elimina on topic Better motionblur shader

One thing you guys aren't thinking about: RSMB is a post processing effect that is way too demanding to be used on any game, no matter how powerful your PC is. Using this effect already takes lot longer to render 60 frames than seeing 60 fps in a game, so I wouldn't imagine the in-game effect to be pleasant to use.

Please Log in or Create an account to join the conversation.

  • NoMansReshade
  • Better motionblur shader (12)Topic Author

More

7 years 10 months ago - 7 years 10 months ago#11by NoMansReshadeReplied by NoMansReshade on topic Better motionblur shader

Elimina wrote: One thing you guys aren't thinking about: RSMB is a post processing effect that is way too demanding to be used on any game, no matter how powerful your PC is. Using this effect already takes lot longer to render 60 frames than seeing 60 fps in a game, so I wouldn't imagine the in-game effect to be pleasant to use.

But surely we could at least get a better motion blur than the "Drunk" frame blending shader we have now, right? Like the one seen in this example?

Last edit: 7 years 10 months ago by NoMansReshade.

Please Log in or Create an account to join the conversation.

  • Elimina
  • Better motionblur shader (13)

More

7 years 10 months ago#12by EliminaReplied by Elimina on topic Better motionblur shader

NoMansReshade wrote:
But surely we could at least get a better motion blur than the "Drunk" frame blending shader we have now, right? Like the one seen in this example?

Anything is better than the one we have currently Better motionblur shader (14) I'm not certain on this, but I think that this code uses the object's velocity/speed & distance to determine the amount of motion blur that is applied, which if I remember correctly, ReShade's depth buffer provides distance calculations but is unable to detect velocity.

There is one method that Ganossa was working on that could fix half of the problem, but recognizing an objects velocity is usually handled through methods that ReShade cannot access. I do know that Ganossa was working on a motion blur based in mouse movements (to simulate camera rotation), but I don't know what happened to that project.

Please Log in or Create an account to join the conversation.

  • Insomnia
  • Better motionblur shader (15)

More

7 years 10 months ago#13by InsomniaReplied by Insomnia on topic Better motionblur shader

Elimina wrote:

NoMansReshade wrote:
But surely we could at least get a better motion blur than the "Drunk" frame blending shader we have now, right? Like the one seen in this example?


Anything is better than the one we have currently Better motionblur shader (16) I'm not certain on this, but I think that this code uses the object's velocity/speed & distance to determine the amount of motion blur that is applied, which if I remember correctly, ReShade's depth buffer provides distance calculations but is unable to detect velocity.

There is one method that Ganossa was working on that could fix half of the problem, but recognizing an objects velocity is usually handled through methods that ReShade cannot access. I do know that Ganossa was working on a motion blur based in mouse movements (to simulate camera rotation), but I don't know what happened to that project.

Depth based motion blur is what I would like. Better motionblur shader (17) Blur close to camera and not the whole screen like it is today.

Please Log in or Create an account to join the conversation.

  • NoMansReshade
  • Better motionblur shader (18)Topic Author

More

7 years 9 months ago - 7 years 9 months ago#14by NoMansReshadeReplied by NoMansReshade on topic Better motionblur shader

Elimina wrote:

NoMansReshade wrote:
But surely we could at least get a better motion blur than the "Drunk" frame blending shader we have now, right? Like the one seen in this example?


Anything is better than the one we have currently Better motionblur shader (19) I'm not certain on this, but I think that this code uses the object's velocity/speed & distance to determine the amount of motion blur that is applied, which if I remember correctly, ReShade's depth buffer provides distance calculations but is unable to detect velocity.

There is one method that Ganossa was working on that could fix half of the problem, but recognizing an objects velocity is usually handled through methods that ReShade cannot access. I do know that Ganossa was working on a motion blur based in mouse movements (to simulate camera rotation), but I don't know what happened to that project.

Couldn't you just capture the depth buffer from the current frame, store it until the next frame is done and then use that to determine velocity (which would add delay but who cares) ??

EDIT:
Because my understanding is that the current motion blur shader captures the current frame and stores it, then uses that to determine velocity; blurring the entire screen as a whole (effectively creating the "drunk" effect we see now.)

Last edit: 7 years 9 months ago by NoMansReshade.

Please Log in or Create an account to join the conversation.

  • magicart87
  • Better motionblur shader (20)

More

7 years 9 months ago#15by magicart87Replied by magicart87 on topic Better motionblur shader

What about adding a mask overlay that would make blur more extreme at the ends and less extreme in the center. Sorta like tunnel vision.

Please Log in or Create an account to join the conversation.

  • luluco250
  • Better motionblur shader (21)

More

7 years 8 months ago - 7 years 8 months ago#16by luluco250Replied by luluco250 on topic Better motionblur shader

Something that I had experimented with before, and worked for the most part, was using the mouse velocity as the camera velocity. You won't get per-object motion blur, but at least something similar.

You need two separate 1x1 RG32F (32-bit float2) textures, one fire saving the velocity and one for saving the last mouse position (from the last frame), you then get the speed using:

vel = (last - curr) * sensitivity;

'sensitivity' being an uniform.

The problem with this is that motion blur stops working when the mouse hits the screen edges, the velocity is simply calculated to 0 if the cursor doesn't actually move.

My suggestion would be to add a new uniform to ReShade that gets the input directly from the mouse driver, not from Windows, so we could save a true mouse velocity uniform (and not even have to deal with it inside the shader itself).

Another thing you could improve upon is using some sort of distortion on the edges of the screen blur to simulate that spherical-looking motion blur you seen in games like Crysis.

Oh and you can get the mouse position with:

float2 f2Mouse <source="mousepoint";>;

Last edit: 7 years 8 months ago by luluco250.

Please Log in or Create an account to join the conversation.

Better motionblur shader (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Pres. Carey Rath

Last Updated:

Views: 5811

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Pres. Carey Rath

Birthday: 1997-03-06

Address: 14955 Ledner Trail, East Rodrickfort, NE 85127-8369

Phone: +18682428114917

Job: National Technology Representative

Hobby: Sand art, Drama, Web surfing, Cycling, Brazilian jiu-jitsu, Leather crafting, Creative writing

Introduction: My name is Pres. Carey Rath, I am a faithful, funny, vast, joyous, lively, brave, glamorous person who loves writing and wants to share my knowledge and understanding with you.