Questions tagged [bloom]

Bloom is a computer graphics effect used in video games and high dynamic range rendering (HDR) to reproduce an imaging artifact of real-world cameras.

55 questions
0
votes
1 answer

THREEJS - How to traverse all layers of model loaded with GLTFLoader?

How does one traverse a mesh loaded with GLTFLoader properly to walk through all layers? I am trying to do a simple selective bloom pass on a model by traversing the model’s all parts, setting them to the bloom layer, and then rendering the combined…
Slayahh
  • 373
  • 4
  • 14
0
votes
0 answers

increasing emission intensity causes the material become dark with post-processing bloom effect in urp unity

This is first image with a little intensity. This looks alright. Now this is with some more intensity. Look at this darkness. Why i am getting this? Everything is great in editor but not working properly in android build. I have enabled ACES…
0
votes
2 answers

ThreeJS How to use Bloom Post-Processing Without NPM in VanillaJS

I want a bloom effect for my scene when using an emissive map like shown in this ThreeJS Example. I've tried to understand the code a little bit but I'm basically stuck. The examples are all made with NPM and I do not use this method for my project.…
Miger
  • 1,175
  • 1
  • 12
  • 33
0
votes
1 answer

Adding postinst to debian release

I have a debian package that already has been released but I'm trying to apply a post installation step to it and it's not being performed. My package's upstream repo and release repo are in the links below,…
Mike_k
  • 11
  • 1
0
votes
1 answer

Will using a bloom filter be faster than searching a dictionary or list in Python?

I have a file with a list of UUIDs for Assets (9000+) in my company. Now the basic task is importing that file into a list of UUID so that my program can loop and check if a number of other UUIDS match. Now the question is, would using a bloom…
dlystyr
  • 103
  • 6
0
votes
1 answer

Neo4j Bloom is missing nodes for apoc.path.subgraphAll while Neo4j Desktop Browser works as expected

So when I run the following query against my DB I get 168 nodes returned. MATCH (u:Undefined) CALL apoc.path.subgraphNodes(u, {}) YIELD node RETURN node This works as expected in both Neo4j Bloom (1.3.2) and Desktop Browser (1.2.8) If I run this…
0
votes
1 answer

XNA Bloom Sample - Blank purple screen

I have placed the two bloom classes into my project from the Bloom sample and followed the same steps as the sample, although when I start the project, all I am getting now is a blank purple screen? I'm not getting an error or anything, All I did…
Jamie
  • 683
  • 2
  • 11
  • 16
0
votes
1 answer

OpenGL GLSL bloom effect bleeds on edges

I have a framebuffer called "FBScene" that renders to a texture TexScene. I have a framebuffer called "FBBloom" that renders to a texture TexBloom. I have a framebuffer called "FBBloomTemp" that renders to a texture TexBloomTemp. First I render all…
3DLearner
  • 102
  • 1
  • 10
0
votes
1 answer

How to handle the screen wrap repeat of FFT-based bloom effect?

I am currently working on the FFT-based bloom effect. With the help of a paper from GPU Gems, it works fine. But it turned out that if the sparse point is near the edge of the screen, the bloom effect would wrap on the screen like this: How to…
Noah Zuo
  • 98
  • 12
0
votes
2 answers

How to make glow/bloom effect around a simple circle?

I do a simple circle in fragment shader: float dist = length(gl_PointCoord - 0.5); // distance to center float circle = smoothstep(0.3, 0.5, dist); // apply smoothing curve And now I would do some bloom effect around it. Like…
RED
  • 39
  • 2
  • 7
1 2 3
4