Tagged Questions
The depth tag has no wiki summary.
10
votes
3answers
1k views
Hitting Maximum Recursion Depth Using Python's Pickle / cPickle
The background: I'm building a trie to represent a dictionary, using a minimal construction algorithm. The input list is 4.3M utf-8 strings, sorted lexicographically. The resulting graph is acyclic ...
8
votes
2answers
175 views
What is the maximum depth of HTML documents in practice?
I want to allow embedding of HTML but avoid DoS due to deeply nested HTML documents that crash some browsers. I'd like to be able to accommodate 99.9% of documents, but reject those that nest too ...
6
votes
1answer
553 views
Adding a persistent UIView with a UITabBarController
I have an app using a UITabBarController, and I have another view that needs to slide up from behind the tab bar controls, but in front of the tab bar's content. If that's not clear, imagine an ...
5
votes
4answers
2k views
Z buffer issue in mixing 2D sprites with 3D model, in XNA 4.0!
I have to create a 2d menu, over a 3d model, using XNA. Right now, I have created spritebatch for 2D, and a 3d model. But, as i have noticed, and was mentioned in other places, model is not being ...
4
votes
4answers
824 views
Implementing Depth First Search into C# using List and Stack
I want to create a depth first search which I have been somewhat successful in.
Here is my code so far (Except my constructor, note the Vertex and Edge classes only contain properties, nothing ...
3
votes
1answer
106 views
What's the best depth map generation algorithm?
I'm into a 2D-to-3D application project and I'm looking for a method to produce the depth map of a single input image, without other external informations. I know that's a sort of "artificial ...
3
votes
2answers
434 views
Save Kinect depth image in Matlab?
By using Kinect, I can get depth image in which each depth image pixel store the distance(in millimeter) between camera and object. Now I want to save them so that I can use later. What is the best ...
3
votes
1answer
279 views
Restrict the depth of nested elements in XSD
Is it possible with XML schema to restrict the depth of child elements nested in a parent?
The context here is I collect alarms from a management system and I want to provide a XML document which ...
3
votes
4answers
579 views
python multithread “maximum recursion depth exceed”
I use Python multithread to realize Quicksort.
Quicksort is implement in a function. It is a recursive function.
Each thread calls Quicksort to sort the array it has. Each thread has its own array ...
3
votes
4answers
1k views
Listing the content of a tar file or a directory only down to some level
I wonder how to list the content of a tar file only down to some level?
I understand tar tvf mytar.tar will list all files, but sometimes I would like to only see directories down to some level.
...
2
votes
1answer
127 views
how to handle depth in glsl
I have a problem with FBO and depth in openGL. I am passing projection, view and model matrices to a shader that writes to the g buffer. When I unbind the FBO and write to gl_FragColor the scene ...
2
votes
2answers
171 views
[GLSL]How to compare the z value of all the vertices in world coordinate?
This might be a simple question. As a newbie on GLSL, I would rather ask here.
Now, in the vertex shader, I can get the position in world coordinate system in the following way:
gl_Position = ...
2
votes
1answer
119 views
OpenGL depth test problem
I've got a problem with OpenGL on mac, and I think the problem is the Depth test.
So, to my problem: Rather than explaining, I made two screenshots:
My scene from far: ...
2
votes
3answers
542 views
How to copy depth buffer to a texture on the GPU?
I want to get the current depth buffer to a texture, to access it in a shader. For various reasons I can't do a separate depth pass, but would need to copy the already-rendered depth.
glReadPixels ...
2
votes
3answers
89 views
finding maximum depth of chapter
everyone . In this case ,I want to conpute the maxximun depth of the chapter.For instance, a book without chapters has height 0 . A book only has chapters with no sections ,the height should be 1.The ...
2
votes
1answer
564 views
Android depth buffer issue: Advice for anyone experiencing problem
I've wasted around 30 hours this week writing and re-writing code, believing that I had misunderstood how the OpenGL depth buffer works. Everything I tried, failed. I have now resolved my problem by ...
2
votes
4answers
215 views
GNU find: Search in current directory first
how can I tell find to look in the current folder first and then continue search in subfolders? I have the following:
$ find . -iname '.note'
folder/1/.note
folder/2/.note
folder/3/.note
folder/.note
...
2
votes
1answer
87 views
Finding the product of a variable number of Ruby arrays
I'm looking to find all combinations of single items from a variable number of arrays. How do I do this in Ruby?
Given two arrays, I can use Array.product like this:
groups = []
groups[0] = ...
2
votes
3answers
1k views
How to write to the OpenGL Depth Buffer
I'm trying to implement an old-school technique where a rendered background image AND preset depth information is used to occlude other objects in the scene.
So for instance if you have a picture of ...
2
votes
2answers
741 views
How to use 2 different item renderers in mx:Tree
Question for Flex guys.
How can I use multiple item renderers in mx:Tree depending on item's depth/level in tree?
For example. For the first level items I want to use label with button and for second ...
2
votes
1answer
260 views
What is the average asymptotic depth of a simple unbalanced search tree?
For a balanced search tree, it is O(log(N)) for all cases. For unbalanced search trees, the worst case is O(N), e.g., insert 1, 2, 3, 4,.. and best case complexity is when it is balanced, e.g., insert ...
1
vote
1answer
222 views
Microsoft Kinect SDK Depth calibration
I am working on a 3D model reconstruction application with Kinect sensor. I use Microsoft SDK to get depth data, I want to calculate the location of each point in the real-world. I have read several ...
1
vote
1answer
186 views
Python: Maximum recursion depth exceeded
I have the following recursion code, at each node I call sql query to get the nodes belong to the parent node.
here is the error:
Exception RuntimeError: 'maximum recursion depth exceeded' in ...
1
vote
2answers
84 views
opengl shader pipeline depth calculation
i'm trying to figure out what happens internally in a vertex-fragment shader pair. To be more specific i'm trying to compare depth values on the cpu. On of these depth values is calculated by a shader ...
1
vote
1answer
41 views
find the smallest depth leaf node in bst
Need to get the leaf node that has minimum depth. I cannot think of a good way to do it without storing additional information in each node, please suggest, thanks very much.
1
vote
1answer
41 views
“Correct” XML Format / Tree Depth Performance
I am building an XML file to hold the schedule of a ferry to import into an Android application and have developed three XML tree structures, but looking for an opinion on which to use based on ...
1
vote
3answers
268 views
3D-Anaglyph creation algorithm, using depth map image: where to find?
I'm looking for a generic algorithm to calculate a red/cian anaglyph starting from the original image and his b/w depth map (example: ...
1
vote
3answers
576 views
Precision of the kinect depth camera
How precise is the depth camera in the kinect?
range?
resolution?
noise?
Especially I'd like to know:
Are there any official specs about it from Microsoft?
Are there any scientific papers on ...
1
vote
1answer
120 views
Maximum recursion depth in Node.js 0.4
as I use Node.js for not too long time yet, I've ran into a following problem. I understand that using callback-driven paradigma we need to convert loops we used in synchronous code into recursion. My ...
1
vote
2answers
68 views
Checking for even-odd levels of a min-max heap java
So this is a method I wrote to determine if a given index of an array represents a max level or a min level of a heap, where min level has even depth (including 0), max level has odd depth. It works ...
1
vote
0answers
68 views
android: pixel Depth of device
I'd like to know if it's possible to get the pixel depth (number of colours) of a device.
with DisplayMetrics it is possible to know the resolution...
DisplayMetrics metrics = new DisplayMetrics();
...
1
vote
1answer
195 views
DirectX Z buffer not working correctly
My problem centers around the Depth test in DirectX 9. I'm trying to render one object at a static point in the game and another at a point that can be changed based on input from DirectInput. One of ...
1
vote
0answers
207 views
depth/z-index of container and the spark controlBarContent component
I have a spark controlBarContent component at the bottom of my application in the hopes that it would be the top most rendered display object. I also have a spark container that I would like to move ...
1
vote
2answers
230 views
XPath: How to: select all children and grandchildren (regardless of depth) with the given attribute name of the current context?
xml:
<root0>
<elem1>
<elem21 xlink:href="21"/>
<elem22>
<elem31 xlink:href="31"/>
<elem32>
<elem41 ...
1
vote
1answer
109 views
Java: VTD-XML 2.10: How to select all element in depth 1
I am using VTD-XML 2.10 in Java.
I have problem on how to select all elements which has depth of 1.
Any guidance is appreciated.
1
vote
1answer
358 views
Does as3isolib depth sort automatically?
I have built an isometric plane and isometric plane contains 64 grass object and one box object that move on click.
A MouseEvent.CLICK handler is attached to each grass object.
I have drawn grass ...
1
vote
2answers
310 views
Reading depth value of transparent plane with glReadPixels and gluUnProject
I am trying to create a billiards simulation and have been using glReadPixels along with gluUnProject to project my mouse pointer into the scene.
This works fine if the mouse is pointing at an object ...
1
vote
2answers
301 views
Error 1006 : Swapdepths is not a function
I'm having some trouble with swapDepths function. I'm programming a drag/drop system. I created a empty MovieClip (depthSwaper), with the highest depth, and every time I drag one of my objects, I swap ...
1
vote
2answers
138 views
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<String, ...
1
vote
1answer
356 views
Problems with layers, depth and blending in openGL
I need to overlay some textures onto a video in a layered fashion (i.e. the first texture should appear under, the second texture when they are both semi-transparent etc).
The textures all have ...
1
vote
3answers
583 views
iterative closest point library
is there any c++/c open source implementation? i got two point clouds and would like to match them.. any ideas?
1
vote
1answer
887 views
Handling depth with Flex 4
I have a code in Flex 4 like this
<!-- START >>> middle part: items -->
<mx:Canvas id="itemContainer"
width="100%"
height="100%">
<!-- START ...
1
vote
3answers
104 views
python import depth
I've noticed that importing a module will import its functions and methods, and the functions and methods of those as well. Is there a set rule for how many levels down python will import when you ...
1
vote
1answer
285 views
mysql to get depth of record, count parent and ancestor records
Say I have a post table containing the fields post_id and parent_post_id. I want to return every record in the post table with a count of the "depth" of the post. By depth, I mean, how many parent and ...
1
vote
2answers
434 views
Calculating depth and descendants of tree
Can you guys help me with the algorithm to do these things? I have preorder, inorder, and postorder implemented, and I am given the hint to traverse the tree with one of these orders. I am using dotty ...
1
vote
1answer
558 views
Implementing your own depth buffer with GLSL
I need a datastructure of the same size as the normal depth buffer and I need to be able to read from and write to it in a shader. Is this possible, and what does this datastructure look like?
1
vote
5answers
2k views
Calculate the depth of a binary search tree?
I am having difficulty calculating the summation of depths [the sum of the individual depths for all children of the root] for a given BST. I have the total number of nodes for the tree, and I am ...
1
vote
1answer
730 views
Proof for depth of balanced search tree
If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1?
There is a proof by induction which I have but I ...
0
votes
2answers
52 views
How to use OpenGL orthographic projection with the depth buffer?
I've rendered a 3D scene using glFrustum() perspective mode. I then have a 2D object that I place over the 3D scene to act as a label for a particular 3D object. I have calculated the 2D position of ...
0
votes
1answer
42 views
Retrieving depthBuffer of a render for another render pass. (D3DX9)
I am rendering a scene to a texture, then using that texture and its depthBuffer in subsequent renderings to apply some effects (Depth Of Field, Bloom, etc...).
Here is the problem: I manage to set ...