Questions tagged [depth]

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.

The depth of a node in a tree is the length of the path to its root. The depth of the tree is the maximum depth of all nodes.

See also:


The depth of an image is the number of bits used to indicate the color of a single pixel.

See also:

742 questions
5
votes
3 answers

Why kinect color and depth won't align correctly?

I've been working on this problem for quite some time and am at the end of my creativity, so hopefully someone else can help point me in the right direction. I've been working with the Kinect and attempting to capture data to MATLAB. Fortunately…
vsector
  • 437
  • 6
  • 14
5
votes
1 answer

Suggestion for object recognition algorithm using depth information

I have recently implemented a recognition software following the technique described in this paper. However, my dataset also contains depth maps taken with OpenNI. I'd like to increase robustness of the recognizer using depth information. I though…
5
votes
1 answer

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.5f,-0.5f,-0.5f, -0.5f,-0.5f,-0.5f, …
debonair
  • 2,505
  • 4
  • 33
  • 73
5
votes
2 answers

Hardware to use for 3D Depth Perception

I am planning on giving a prebuilt robot 3D vision by integrating a 3D depth sensor such as a Kinect or Asus Xtion Pro. These are the only two that I have been able to find yet I would imagine that a lot more are being built or already exist. Does…
clifgray
  • 4,313
  • 11
  • 67
  • 116
5
votes
1 answer

Kinect: How to get the skeleton data from some depth data( geting from kinect but i modified some place)

I could get the depth frame from my Kinect and then modify data in the frame. Now I want to use the modified depth frame to get the skeleton data. How can I do it?
John
  • 93
  • 4
5
votes
1 answer

How to make motion history image for presentation into one single image?

I am working on a project with gesture recognition. Now I want to prepare a presentation in which I can only show images. I have a series of images defining a gesture, and I want to show them in a single image just like motion history images are…
masad
  • 1,547
  • 1
  • 18
  • 40
4
votes
0 answers

What is a simple and elegant way to flatten lists or arrays of arbitrary depths?

> my @a = (3, [4,5, [6, 7 , (8,9, (10), 11), 12], 13], 14, 15) [3 [4 5 [6 7 (8 9 10 11) 12] 13] 14 15] > flat @a (3 [4 5 [6 7 (8 9 10 11) 12] 13] 14 15) # ---------------------------> not flat enough > say @a[*;*;*] (3 4 5 6 7 (8 9 10 11) 12 13 14…
lisprogtor
  • 5,677
  • 11
  • 17
4
votes
1 answer

2D to 3D Projection with given Z in world

I'm sorry if it has been ask before but I couldn't find the proper answer to my question. For a better understanding, let me briefly explain the context of my problem Context I have two images (A and B) with non planar object on it. I would like to…
geko
  • 51
  • 5
4
votes
3 answers

nested hashmaps of unknown depth java

I have a requirement in which I need to have an nested hashmap. But the depth would be decided at run time. E.g. If at runtime, user says 3, then my hashmap should be like HashMap>> if he says 4…
maverickprac
  • 543
  • 1
  • 5
  • 8
4
votes
0 answers

Displaying Depth Map from PHAsset

I am trying to read the depth map and overlay it over the UIImageView of a PHAsset. So far I have this: PHImageManager.default().requestImageData(for: self.asset!, options: nil, resultHandler:{ (data, responseString, orientation, info) -> Void in …
Gizmodo
  • 3,151
  • 7
  • 45
  • 92
4
votes
1 answer

Tensorflow Object Detection API 1-channel image

Is there any way to use pre-trained models in Object Detection API of Tensorflow, which trained for RGB images, for single channel grayscale images(depth) ?
4
votes
1 answer

If node not found, what level should it go in the Binary Search Tree

I'm trying to implement this method in my Binary Search Tree that should tell me the depth of an element that was found. My question is if the element was not found, how should my search return the level of the tree at which it exited (or be placed…
AmyF
  • 47
  • 5
4
votes
1 answer

N-ary tree depth and degree algorithm

I'm having some problems with a couple algorithms that should return the maximum degree (the max number of children of a node) and depth (dimension of the longest branch) of a tree. It looks like with some Tree structures they work, with some others…
Leo
  • 241
  • 2
  • 3
  • 12
4
votes
2 answers

Get the child with biggest depth of a parent

Say I have this tree structure: -root | | |-child1 | |-innerChild1 | |-innerChild2 | |-child2 I would like to make a JS function that takes an element of the tree, and see from its perspective how deep does it go. For instance: var depth =…
4
votes
1 answer

Depth map from iPhone 7 Plus dual cameras

Is or will there be a built in feature to generate and access a depth map from the dual cameras on the iPhone 7 Plus? We have all seen Apple's keynote where they demonstrate how to use the cameras to create a shallow depth effect, but reading the…
Aerows
  • 760
  • 6
  • 22