Questions tagged [post-processing]
340 questions
4
votes
3 answers
Play 2.0 RESTful request post-processing
In regard to this question I am curious how one can do post-request REST processing a la (crude):
def postProcessor[T](content: T) = {
request match {
case Accepts.Json() => asJson(content)
case Accepts.Xml() => asXml(content)
case _…

virtualeyes
- 11,147
- 6
- 56
- 91
3
votes
1 answer
HUD post-processing in Godot
I have a project in Godot that renders billboarded quads on top of enemies. The quads(meshinstances) are children nodes of the enemy nodes. I want to render just the quads to a viewport for post-processing, but the quads need to have the same…

Dave
- 93
- 2
- 9
3
votes
0 answers
A-Frame: post-processing attempt works on desktop, fails in VR
I am attempting a simple approach to postprocessing in A-Frame (without using the three.js classes EffectComposer, etc., for simplicity). The approach seems standard:
create a new render target
render the scene into the target's texture
create a…

Stemkoski
- 8,936
- 3
- 47
- 61
3
votes
2 answers
Best method to get Outline effect with animated skinned mesh
What is the best method to get the outline effect with animated skinned mesh?
An example with the model paused at a specific pose: https://jsfiddle.net/Eketol/uev9o0qp/
composer = new THREE.EffectComposer( renderer );
renderPass = new…

Eketol
- 125
- 10
3
votes
1 answer
Incorrect tracing with SSLR (Screen Space Local Reflections)
While implementing SSLR, I ran into the problem of incorrectly displaying objects: they are infinitely projected "down" and displayed in no way at all in the mirror. I give the code and screenshot below.
Fragment SSLR shader:
#version 330…

congard
- 945
- 2
- 10
- 28
3
votes
2 answers
Why isn't paperclip post processing working?
Hello I've been looking around at all the various tutorials out there for Paperclip post processing but somehow I can not get the 'Make' method to invoke.
Take a look at line 36 here... http://pastie.org/private/epfgcxywhyh4wpmozypg
It uploads…

yekta
- 3,363
- 3
- 35
- 50
3
votes
0 answers
Three JS - sao post processing don't affected by fog
I have a scene with several objects (cubes), in that scene I'm using fog, I aplied sao post processing, but it won´t be affected by the fog ( sao is aplied over fog).
How do I make the fog affect the sao?
I'm using Three.js r95 in Chrome…

camilo molina
- 71
- 4
3
votes
1 answer
Is it possible to do a 'unity build' with Latex source files?
Those who know C++ may know what I mean by 'unity build':
*.cpp files of a project are all effectively #include-ed into a single supermassive source file following #include directives specified in *.cpp and *.h files
this source file is fed into…

fatuhoku
- 4,815
- 3
- 30
- 70
3
votes
1 answer
Extended floating point precision on mobile GPU
I'm trying to compute the gradient vector field of an image on the gpu using opengl-es 2.0. I found a cpu implementation for it which i use as a compare to my gpu implementation. The challenge here is that the cpu implementation relies on java type…

RogerLePatissier
- 157
- 11
3
votes
1 answer
Image Processing with Three.js With Effect Composer
Looking at the example here: http://threejs.org/examples/#webgl_postprocessing
I'm curious if there is a way to perform this post-processing business on a copy of the original data set. In other words, I want to display the original rendering of my…

user985030
- 1,557
- 1
- 16
- 32
3
votes
1 answer
OpenGL ES 2.0: attach smaller texture to framebuffer
I have implemented bloom post process effect in my game for Android using render to texture and proper shaders. It works, but the performance hit is unacceptable. So I thought that I could render the scene to smaller texture and then stretch the…

Matis
- 503
- 5
- 17
3
votes
1 answer
CUDA: real time video post-processing
I would like to know if anyone could point me in the right direction here.
Suppose I have a video file in some encoding (e.g., H.264), and I decode this video using CUDA's video decoding library (https://developer.nvidia.com/nvidia-codec-libraries).…

sga001
- 158
- 1
- 9
3
votes
4 answers
Image blur effect in shaders
I want to do image effects such as screen blur in my game but I have a problem that it just darkens the screen slightly.
Here is the class for the FBO
GLuint m_fbo;
GLuint m_fboTexture;
GLuint m_fboDepthBuffer;
void FBO::Initialize(float width,…

Jose
- 127
- 2
- 14
2
votes
0 answers
Django - processing objects after .filter(...) or .all(...)
Still learning Django, so not sure if there's a nice way to do this.
I have a few models with specific attributes (all use Item as base class), and a metadata table (id, language, type, value) used to store any extra attributes that could be…

btk
- 3,158
- 2
- 29
- 30
2
votes
0 answers
Are negative gl_FragColor values allowed by GL ES spec?
I'm currently trying to blend a bunch of sprites together in Three.js. What I've found is that giving my sprite shader negative gl_FragColor.rgba values interacts perfectly with my postprocessing shader, whereas positive values are bland without…

aggregate1166877
- 2,196
- 23
- 38