The depth of a node in a tree is the length of the path to its root. The depth of an image is the number of bits used to indicate the color of a single pixel.

learn more… | top users | synonyms

0
votes
0answers
17 views

Get the the max depth of a tree in Lua

I've seen this in other languages but my Lua implementation is tripping me up. I have a tree structure and I'm trying to write a recursive function to find the max depth of a tree. A node is a table ...
0
votes
0answers
9 views

WebGL: Display Depth Texture

I'm new to WebGL and trying to implement depth textures for later usage in Shadow Maps. Below is my code of the initilisation of the framebuffer. In the function drawTest I first bind all Buffers ...
0
votes
0answers
15 views

How do I capture a moving object's depth frame using Kinect without blur?

I have a Kinect that is continuously streaming depth and RGB data of an object that has certain features. However when I move the object at the minimum velocity that I desire, the depth data is ...
0
votes
0answers
41 views

Obtain depth data from kinect thresholding in Python using opencv

my crew and I have the following code (adapted from Peter) to get a hand threshold (segmentation) using the kinect in python 2.7 (Fedora 17) and opencv. The program basically works like the following: ...
0
votes
0answers
10 views

Replacing views conserving depth

My application creates "screens" (screen-sized fragments) inside a container. All is done programmatically. A typical runtime structure would be something like this. <FrameLayout> ...
0
votes
1answer
54 views

WebGL display framebuffer?

I used the WEBKIT_WEBGL_depth_texture Extension. And init the buffers below. But how am I able to draw this framebuffer?? I'm totaly stuck right now. -.- function InitDepthtextures (){ var size = ...
0
votes
5answers
71 views

having trouble understanding this code

I just started learning recursion and I have an assignment to write a program that tells the nesting depth of a list. Well, I browsed around and found working code to do this, but I'm still having ...
0
votes
0answers
66 views

Android Animation - applytransformation - Do a camera translate on Z axes for half the time

I was trying to make a rotational cube using translations and rotations. I'm using a classe named Rotate3dAnimation.java provided in the Google samples. The rotation is working pretty well and i was ...
0
votes
2answers
68 views

Find the depth of a root indexed array from a particular node

I have an array like Array ( [0] => Array ( [id] => 81 ...
-2
votes
3answers
108 views

How to find the depth of an unlimited depthed array [duplicate]

I am trying to find out the depth of a multi dimension array. The array is unlimited one (depth). I would like to find out the maximum depth of the array. Please see the array structure below Array ( ...
1
vote
2answers
103 views

Depth as distance to camera plane in GLSL

I have a pair of GLSL shaders that give me the depth map of the objects in my scene. What I get now is the distance from each pixel to the camera. What I need is to get the distance from the pixel to ...
0
votes
1answer
52 views

Is there a way to make a recursion method with unlimited depth in Python?

For example, when writing some algorithms on graphs like def f(graph): #graph is dictionary of pairs vertex_i:{set of edges (i,j)} for 1<=i,j<=n def g(vertex): for vertex1 in ...
1
vote
1answer
75 views

Determining nested depth to assign size of node D3.js

I am trying to use the Flare.json data without having to manually adjust the size attribute to get pleasant results. Ideally, I would like the size to be a function of the nested depth, so it the ...
0
votes
0answers
24 views

Is depth peeling for intersecting transparent objects still up to date?

I want to use depth peeling, so that I can correctly render transparent intersecting objects. Is this still the way to do, or are there better ways for the problem today ? Thanks in advance.
0
votes
0answers
56 views

Solved Unresolved external symbol with openCV

I'm trying to initialize OpenNI sensors using OpenCV in order to get depth map from depth sensor of my kinect. The code I used to get one depth image: and The output I get: LNK2019: unresolved ...
0
votes
0answers
35 views

Can I get a calibrated image and skeleton from the Official Kinect SDK at the same time?

Basically, I just want those three things. Color, Depth, and Skeleton. But I also want the depth and color lined up. I know that in the official examples, there's GreenScreen.cpp, which is an ...
1
vote
1answer
49 views

Flex: BusyIndicator on top of a button?

I am a newbie to flex, using flex 4.6 with FB 4.7. I am trying to create a BusyIndicator "in front of" (and in the middle of) a Button. I found some examples on Google on image stacking, but for some ...
0
votes
4answers
79 views

JQuery's “find()” with depth limit, I can't use .children()

I need to use jquery's "find" selector to get all divs having the class "field_container". The problem is that I can't go too deep in the DOM tree. Here is my simplified HTML structure: <div ...
0
votes
0answers
58 views

Depth Buffer in Direct3D isn't working

I can't seem to get my depth buffer working. I've been following the rastertek tutorials, but models rendered after other models will always appear closer to me, even though they're farther away. ...
0
votes
1answer
69 views

Networkx, DIAC graph, subgraph from a node with deph limit

I have a Digraph constructed with networkx that has 37379 nodes and 61263 edges. I would like to extract for a node target, a subgraph that contain only the target node and the first nodes that are ...
0
votes
1answer
30 views

Is depth handled differently by opengl on different android phones?

Im testing my new game prior to release and i have found that on some devices the Z positions seemed to be mixed up in some cases and objects that should appear on top were appearing underneath. I'm ...
1
vote
1answer
247 views

XNA / MonoGame: depth sorting alpha blended UserPrimitives

Googling around a lot for this, read this very useful article, but still wondering about a solution for my project. This screenshot illustrates my problem perfectly: There are 2 objects: the red ...
0
votes
0answers
25 views

Z-fighting on co-located lines in OSG

I am working on a system whereby multiple routes are drawn into the scene using lines. It is possible that more than one of the routes will follow the exact same path for portions of the route. When ...
1
vote
1answer
52 views

Depth using OpenGL in XCODE

My problem is that i have a project in Xcode where i have to use OpenGL to create two atoms, one of them is in the center on the window, and the other is spinning around the first. My problem is that ...
0
votes
1answer
46 views

Remove artifacts/noise from a depth analyzer

Given two images and you can find the depth from scanning each row and differences, does anybody know how to remove noise? for example, if the expected output is left and mine is right ...
-4
votes
1answer
640 views

Calculating the depth of a tree in Python [closed]

Define a function sum_to_deepest(root) that returns the sum of the keys from the root to the deepest leaf, in the tree rooted at root. If there are two deepest leaves, return the larger sum; if the ...
0
votes
2answers
289 views

Aligning captured depth and rgb images

There has been previous questions (here, here and here) related to my question, however my question has a different aspect to it, which I have not seen in any of the previously asked questions. I ...
0
votes
3answers
141 views

convert an image from IPL_DEPTH_8U to IPL_DEPTH_32S

How can I convert an image from IPL_DEPTH_8U to IPL_DEPTH_32S? I need to use the watershed function and I have a marker image in IPL_DEPTH_8U. The problem is that the watershed function only accepts ...
1
vote
1answer
51 views

Depth vs Distance in a Binary Search Tree

Is the depth of a node in a Binary Search Tree (BST) the same as it's distance from the root? I think so, but I'm not certain. I believe distance is the concept of trees in general and depth is that ...
0
votes
1answer
207 views

Getting Depth of other objects Kinect

I'm a newbie in kinect programming, i am working on a ball tracking using kinect and opencv..we all know that kinect provides Depth data, and with the code below: DepthImagePoint righthandDepthPoint ...
0
votes
1answer
44 views

Different depths between objects

I made a game on two objects. Background and main character. However i want some of the elements of background to be above character. Changing depth of elements to bigger than player's depth doesn't ...
3
votes
1answer
79 views

opengl depth buffer slow when points have same depth

I'm making a 2d game involving drawing huge numbers of overlapping quads to the screen. What goes in front of what doesn't really matter. If I draw each of my quads with z values from 0 upwards and ...
5
votes
1answer
192 views

Suggestion for object recognition algorithm using depth information

I have recently implemented a recognition software following the technique described in this paper http://tinylink.in/ZKU. However, my dataset also contains depth maps taken with OpenNI. I'd like to ...
0
votes
1answer
58 views

Creating 2bits color depth PNG images with Libpng

I would like to generate PNG images with 1bits (2 colors) or 2bit (4 colors) depth with the library Libpng. Does any one know how to do it ? I have tested examples, and they all seem to work with ...
2
votes
0answers
82 views

Color depth calculation

I want to know how to calculate the color depth of a picture with these given items of data: 1) the resolution of the picture. 2) the number of colors in the picture. I actually need to calculate the ...
0
votes
1answer
166 views

d3.js - determining nested depth (or children of children)

I have a data visualization which currently gives objects a class based on whether or not they have children, like this: d3.json("skills.json", function(error, root) { var node = ...
1
vote
1answer
250 views

color depth reduction with opencv and LUT

I'd like to perform a color reduction via color depth scaling. Like this example: the first image is CGA resolution, the second is EGA, the third is HAM. I'd like to do it with cv::LUT because i ...
0
votes
2answers
81 views

Can't do backtrack research in OCaml

I am trying to solve the puzzle 15 game in OCaml. I almost did everything.. except for the core function of the program, the depth first search function. This is what my function looks like now: let ...
0
votes
1answer
98 views

OpenGL depth buffer isn't working

I am attempting to make a simple drawing using openGL. However, the depth buffer doesn't appear to be working. Other people with a similar problem are typically doing one of two things wrong: ...
1
vote
1answer
222 views

Find tree height given preorder [closed]

Given a preorder traversal of a full binary tree, where each node is labeled either a leaf node or an internal node, is there a good algorithm to find the height of the tree? For example, if N ...
0
votes
2answers
130 views

OpenGL Clipping, depth and camera

Having trouble with clipping/view not sure Im simply trying to rotate and scale a rectangular box (of lines not quads) in a windows form (using OpenTK) This is simple enough but When i zoom/scale ...
0
votes
0answers
109 views

Artifacts on the edges when blurring depth

I implemented fluid simulator with rendering included. But I have a problem with calculating normals from position and depth od my fragments (of point sprites). Here is my vertex shader: #version 330 ...
1
vote
1answer
37 views

JS Function within a function within that function and so on

Ok, I have being trying to find a solution for this for the past 3 hours... I want to be able to create my own library, accessible function within function with function etc. Here's what I want to ...
0
votes
2answers
219 views

Reflection and depth in OpenGL

I'm trying to create a mirror in OpenGL. Most references I've found recommend using the stencil buffer to define the boundaries of the mirror itself and using a combination of translation and scaling ...
0
votes
0answers
475 views

Opencv disparity map from webcams - code does not work

Here is code I have written to get feed from 2 webcams and get a running disparity map. code::blocks returns -1 for this, my webcams lights flash, but nothing happens. I need it to loop until I ...
0
votes
1answer
260 views

gluUnProject returns an inaccurate z coordinate under some conditions

I am getting some troubles with gluUnProject because I am retrieving an inaccurate Z coordinate. The program involved is essentially a 3d viewer. I implemented a little function the allows the user ...
1
vote
1answer
274 views

how does glDepthRange work?

My vertex cords are : GLfloat vertices[]= { 0.5f,0.5f,0.5f, -0.5f,0.5f,0.5f, -0.5f,-0.5f,0.5f, 0.5f,-0.5f,0.5f,//face 1 ...
0
votes
0answers
327 views

How do I calibrate RGB Image with Depth Image taken using Kinect (X-box)?

I need to map Depth Image that I got from Kinect (X-box) to RGB image (taken from kinect). The problem is that the depth image size is different from that of the RGB image. And I want to calibrate ...
1
vote
2answers
86 views

OpenGL Depth buffer “warped”

I collect a depthbuffer from a scene. I notice however that when the camera and the scene's objects stay at the same position and the camera only rotates, the depthbuffer collects different results, ...
1
vote
0answers
212 views

OpenGL ES 2.0: Adding EGL_DEPTH_SIZE into an existing EGL context

I'm working on some OGLES2 code which is using a context set up by some framework software (to which I have no access), and I'm trying to draw a simple cube. Having ended up with just a flat square ...

1 2 3 4 5