Ray tracing is a physics-based method for simulating photorealistic 3D scenes. Light rays are drawn from the eye through each pixel, and the rays' interactions w/the scene determine the displayed pixel color.

learn more… | top users | synonyms

2
votes
1answer
35 views

Ray tracing from different viewpoints

I have a mesh model in obj and obj.mtl files, I want to change the camera viewpoint to a certain coordinate [x,y,z] and then use ray tracing to produce a RGB image and depth map / pointcloud from this ...
1
vote
2answers
42 views

C++ Raytracer with opengl display skew in specific resolution

I have a ray tracer (from www.scratchapixel.com) that I use to write a image to memory that I then display at once using Opengl (glut). I use the width and height and divide the screen to get a ...
2
votes
0answers
21 views

Raytracing the 'sunshape'

This is based on the question I asked here, but I think I might have asked the question in the wrong way. This is my problem: I am writing a scientific ray tracer. I.e. not for graphics although the ...
0
votes
2answers
25 views

Inferring U,V for a point in a Triangle from Vertex U,V's

I am writing a very simple ray-tracer in python using CGKit and RTree. After intersecting the ray with the triangle, I would like to infer the U,V of the intersection point from the U,V's of the ...
2
votes
1answer
54 views

Incorrect ray creation in OpenGL from a mouse click when clicking on the extreams of the x-axis of the window?

I have run into a bug that I am not sure how to fix. When I click on the window the point in 3D space does not map directly onto the click in the x-axis of the actual window. The discrepancy between ...
2
votes
0answers
41 views

Does the ray tracing algorithm involves rasterization of image?

I am working on a ray tracing algorithm , i know that the first step is to develop camera and view plane specifications. Now is the next step performing rasterization algorithm on image before a BVH ...
0
votes
1answer
36 views

Sampling a hemisphere using an arbitary distribtuion

I am writing a ray tracer and I wish to fire rays from a point p into a hemisphere above that point according to some distribution. 1) I have derived a method to uniformly sample within a solid ...
1
vote
0answers
22 views

What visual effects can be rendered in ray tracing that are hard or can't be done in current raster engines

As far as I know, the most powerful raster based engines still can't deal with some visual effects. I will list some below and would like to know if I am right or not and what other effects are hard ...
0
votes
0answers
27 views

Raymarching fractals

I try to render a fractal according to this tutorial: http://blog.hvidtfeldts.net/index.php/2011/08/distance-estimated-3d-fractals-iii-folding-space/comment-page-1/#comment-20302 the one under "A REAL ...
0
votes
1answer
36 views

K-D tree for ray tracing in a rotating scene

If I want to ray trace a scene using a K-D tree, and this scene happens to rotate every certain time, is it necessary to rebuild the K-D tree for each rotation or something?
0
votes
0answers
28 views

Resize the renderer inbetween two renders

I'm building a webGL ray tracer relying on three.js. In order to speed up computations and make it real time, instead of ray tracing all the pixels of the screen, I'm considering just a subset of them ...
0
votes
1answer
54 views

Ray-Box intersection normal

I'm writing a simple raytracer and I've hit a wall while trying to get the normal vector for an axis-aligned box, given the intersection point. I'm using this intersection algorithm: float tmin, ...
1
vote
0answers
41 views

Why don't a see a performance increase while using a threadpool?

I have written a 2D Raycaster that can draw a ray to any java shape, including: Line2D, Rectangle2D, Ellipse2D, QuadCurve2D, and CubicCurve2D. The math behind it is actually pretty complicated and ...
1
vote
0answers
32 views

Raytracing luminescence/bioluminescence

I'm looking for papers on how to render (bio)luminescence using a raytracer and I was wondering if anyone here had any suggestions on where to look or if you happen to already know of any in-depth ...
0
votes
1answer
31 views

Split of Bounding box in KD-Tree construction from “Physically Based Rendering"

i am trying to implement a raytracer and i am using the kd-tree construction method from the book "Physicall Based Rendering". the book uses a method called SAH to choose the position to split the ...
0
votes
0answers
26 views

Can't find _T or fRprintf in xutility for vs2008

I'm trying to get this project to work in VS2008 Windows 7 on a 64-bits machine. Their source code is at the bottom. I keep getting two types of errors: error C3861: 'fRprintf': identifier not ...
0
votes
1answer
61 views

Hardware/Software rasterizer vs Ray-tracing

I saw the presentation at the High-Perf Graphics "High-Performance Software Rasterization on GPUs" and I was very impressed of the work/analysis/comparison.. ...
-1
votes
0answers
31 views

How to run code in Visual studio [closed]

I am extremely new to programming. I have been assigned to do a ray tracing project in c#. While searching online i found some work already done here ...
0
votes
1answer
73 views

Ray tracing ray-disk intersection

So I'm trying to write code that sees if a ray intersects a flat circular disk and I was hoping to get it checked out here. My disk is always centered on the negative z axis so its normal vector ...
1
vote
1answer
77 views

Why is my ray-traced image entirely black?

I had to generate an image that's a black circle, black being (0, 0 , 0) and white being (1, 1, 1), but I keep getting a completely black image. Here's all my code: #include "cast.h" #include ...
0
votes
1answer
34 views

Ray casting intersection with infinite plane with normal and offset

I have an Infinite Plane and I know its Normal and Offset. Now, I want to know if a Ray Casting ray is intersecting with this Infinite Plane. How can I know that?
1
vote
2answers
118 views

Best algorithm for ray picking through a lot of spheres [closed]

In my OpenGL application I have a lot of spheres (more than 100.000) and I'm willing to implement an efficient ray-picking algorithm. My approach so far was the naive one: Calculate the ray (in ...
5
votes
1answer
136 views

Raytracer Refraction Bug

I'm writing a raytracer in C++, and I've been having some issue with refractions. I'm rendering a sphere and a ground plane, and the sphere should refract. However, it looks more like a sphere within ...
3
votes
1answer
138 views

Lost/confused in optimizing

I just completed a computer graphics course, where we had to program a ray tracer. Though all the results were correct, I was confused about the use of OpenMP (which BTW was not part of the course). I ...
0
votes
1answer
103 views

Why is this GLSL shader so slow?

I am trying to do a raytrace on a grid in a fragment shader. I have written the shader below to do this (vertex shader just draws a screenquad). #version 150 uniform mat4 mInvProj, mInvRot; uniform ...
0
votes
0answers
59 views

Inverse mailbox in raytracing

I work on raytracing with inverse mailbox, which means for every ray I remember last 8 IDs of triangles I intersected. If ID's triangle is in mailbox and if I get the same ID again, no more ...
0
votes
1answer
34 views

Arbitrary lens design using POV-ray

I am presently trying to use Povray for generating some caustic patterns. I have to design a lens of an arbitrary shape. The lens can be thought of as a sheet of glass. The incident surface of the ...
0
votes
2answers
60 views

For ray tracing refractions/reflections, shouldn't Transmittance+Reflectance = 1?

In this code mind article, http://www.codermind.com/articles/Raytracer-in-C++-Depth-of-field-Fresnel-blobs.html, the part about reflection/refraction has a few cases it checks for whether to transmit ...
0
votes
1answer
44 views

Raytracer won't render more than one instance of an object

I'm writing a raytracer in C++ and I'm having quite a bit of trouble understanding why my output images don't contain all of the objects that should be there. Namely, I'm working with spheres and ...
0
votes
0answers
58 views

n-dimensional ray tracing C/C++ API

I am implementing a program and want to do visualization using ray tracing. I am working in C/C++. Is there anybody knows about a C/C++ API for n-dimensional ray tracing? Or at-least 15-dimensional ...
0
votes
0answers
44 views

OptiX 3.0 rtBufferSetDevicePointer for CUDA interop is not functional

This bug makes me very frustrating. Basically, the rtBufferSetDevicePointer is not working as the documented way. My test code is as the following: context = createOptixContext(); RTbuffer ...
0
votes
0answers
36 views

Sampling with multidimensional transformations

Technical Mathematics Question For Ray Tracing... (I am not sure if I have the title right, but here is my problem) I am writing a raytracer and I need to shoot a rays in a random direction. I have a ...
1
vote
1answer
140 views

JavaScript (WebGL) open-source raytracers (non-realtime)

I want to render an image using RayTracing algorithm in browser and send rendered bitmap to server. It's possible achieve this using WebGL / JavaScript? If it's possible, so which non-realtime ...
3
votes
0answers
134 views

OpenCL traversal kernel - further optimization

Currently, I have an OpenCL kernel for like traversal as below. I'd be glad if someone had some point on optimization of this quite large kernel. The thing is, I'm running this code with SAH BVH and ...
0
votes
1answer
111 views

Raytracer texture mapping leaving artifacts

So I am trying to get OBJ loading working in my raytracer. Loading OBJs works fine, but I am having some trouble with getting the texture mapping working. Here is an image of my result. It is ...
2
votes
1answer
150 views

glossy reflection in ray tracing

I am doing a project about ray tracing, right now I can do some basic rendering. The image below have: mirror reflection, refraction, texture mapping and shadow. I am trying to do the glossy ...
1
vote
1answer
159 views

OpenCL: Create intensity image adding random positions

I have written a Monte-Carlo ray-tracing code in PyOpenCL. Basically I track rays from a source with random position, random intensity and random angle (within limits), and calculate where they hit ...
0
votes
0answers
108 views

Fast, stackless kd-tree traversal in raytracing, clarification needed

I am trying to implement a real time ray tracer, and I was reading this interesting paper on a fast, stackless kd-tree traversal method, but it is unclear regarding certain concepts. At page 4, where ...
6
votes
2answers
282 views

Raytracing - how to combine diffuse and specular color?

I've been reading numerous articles about ray tracing and shading, but my ray traced image does not look too good. I'm talking about the very bright green area near the specular highlight. The result ...
-1
votes
2answers
100 views

determine whether a ray collides with a triangle and distance to the collision point, in 3D

I'm looking for a method to determine whether a ray collides with triangle and distance to the collision point in 3D. a method like the code below or something similar float ...
0
votes
1answer
227 views

Raytracer for two spheres and a plane [closed]

My raytracer is behaving in strange ways and I cannot see my problem. The scene is two unit spheres sitting on a floor defined by the x-z plane. I know in many user questions, little context is given ...
-1
votes
1answer
45 views

BSDF - need an example [closed]

I'm trying to understand in a simple raytracer what does the BSDF function does and in theory I got it but in practice I don't know how to implement one. Can someone point me out some simple examples ...
6
votes
1answer
440 views

Raytracing in OpenGL via compute shader

I am trying to do some raytracing in OpenGL via the compute shader and I came across a weird problem. At the moment I just want to display a sphere without any shading. My compute shader launches a ...
0
votes
1answer
106 views

ogre3d integrate (fast but not realtime) raytracing

I am using Ogre3D in a realtime application (C++). The application has to run on as many platforms as possible: platforms without powerful graphic cards or even on virtual systems (vbox, vmware). So ...
-1
votes
4answers
181 views

Mathematical background for graphics programming/research [closed]

I am a masters student, and I am intrigued by computer graphics to a great extent. However, on most occasions, I feel let down by my poor background in math which makes me feel slow and incompetent. ...
3
votes
3answers
928 views

Why are KD-trees so damn slow for nearest neighbor search in point sets?

I am using CGAL's (the latest) KD-tree implementation for searching nearest neighbors in point sets. And also Wikipedia and other resources seem to suggest that KD-trees are the way to go. But somehow ...
1
vote
0answers
46 views

rendering algorithm suggestions [closed]

For a project in computer science I am to implement a further improvement to my ray-tracing renderer. Features at the moment: SIMD implementation of ray-triangle intersection BVH using AABB. (SIMD ...
-8
votes
1answer
89 views

Getting no match for ‘operator-’ in C++ ray tracer [closed]

Any idea why this is happening? I've been getting nowhere for 20 minutes. bool Sphere::shadow_hit(const Ray& ray, float& tmin) const { double a; double n; float t = (a-ray.o) * n ...
1
vote
2answers
486 views

Ray Tracing vs Rasterization [closed]

I'm relatively a newbie in the field and I'm wondering what's the difference between ray tracing and rasterization and why ray tracing is so slow although more accurate. Aren't the light calculations ...
1
vote
2answers
103 views

How to sort and compare in a Bounding Volume Hierarchy

I'm currently implementing a Bounding Volume Hierarchy for 3D-Triangles only. Sadly all explanations of BVH fall short on the part where you sort your Objects for splitting. For starters I want to aim ...

1 2 3 4 5 6