The picking tag has no wiki summary.
0
votes
0answers
25 views
Finding 2D objects at a point using segment tree
I have a canvas on which 2D objects (rectangles, circles, convex polygons) are drawn. I am now trying to do an "object picker", allowing the user to select and modify those objects.
It would be ...
1
vote
0answers
48 views
Django cache.set() fails on a class with a GenericForeignKey, What can be the cause?
I have a model with a GenericForeignKey. When calling cache.set(key, trac_obj), it fails. I wonder if the GenericForeignKey is the culprit?
# models.py
class Trac(models.Model):
user = ...
1
vote
0answers
192 views
OpenGL color picking RGBA vs RGB
I would like to implement color picking/selection via these three methods:
void ColorIndex(uint colorIndex)
{
glColor4ubv((GLubyte *)&colorIndex);
}
void ColorIndices(vector<uint> ...
0
votes
0answers
268 views
Three.js Picking is working with custom geometry having multiple materials
Here is my jsfiddle: Here
Here is my previous version jsfiddle without implementing picking, if you want to try it from start: Here
My custom geometry in the scene are having multiple materials ...
-1
votes
1answer
226 views
Tutorial for Ray Picking (LWJGL / Java) [closed]
Does anyone now whats a good tutorial for 3D ray picking? I will pick a block in a 3d world. Thx
mh
2
votes
1answer
185 views
Generic picking solution for 3D scenes with vertex-shader-based geometry deformation applied
I'm trying to implement a navigation technique for 3D scenes (in OpenSceneGraph with OpenGL). Among other things the user should be able to click on an scene object on the screen to move towards it.
...
0
votes
1answer
224 views
Picking Ray is inaccurate
I'm trying to implement a picking ray via instructions from this website.
Right now I basically only want to be able to click on the ground to order my little figure to walk towards this point.
...
0
votes
1answer
45 views
Assign a given id in an object in opengl
I am working on a multi-agent application. During a simulation I display the agents present at any timestep. This agent have their own specific id.
I want to identify and interact with those object ...
0
votes
1answer
153 views
Picking a framework element with Kinect (Like Ellipse or Rectangle)
I (literally) want to catch a framework element using NUI of Kinect. Assuming that I have an ellipse on my Grid (or Canvas), I should be able to pick an ellipse using my program.
In order to do this, ...
3
votes
1answer
119 views
How to implement a color picking strategy also for text?
So, I successfully implemented picking/selection by rendering with a unique color each part I want to be selectable.
This works for geometry, but what about the text? I searched the Web a lot, but I ...
0
votes
1answer
584 views
Three.js picking is not working correctly with custom geometry
I have a problem with picking implementation. I found a number of different examples doing what I want, but I really cannot make it work as it should. I mainly followed this example
Basically, I have ...
0
votes
0answers
140 views
Picking problems with collada loaded models in ThreeJS
I'm experiencing picking problems when loading a collada model in ThreeJS. The picking example for cubes works fine. Loading a collada model works as well.
However it seems that for picking collada ...
0
votes
1answer
489 views
C++ OpenGL Mouse picking on thin lines not working
I am first time using picking technique and I have followed the NEHE tutorial to use picking technique in opengl , i actually need to detect the thin lines on the square. But i am not sure why it is ...
0
votes
0answers
482 views
Java OpenGL: Mouse picking in 3D Space
I am trying to make some sort of 3D Editor with Java and OpenGL. And now I'm implementing the basic functions of an 3D Editor like rotating the camera around a specific Position and zooming. Next I ...
0
votes
1answer
742 views
how to get colors by glreadpixels?
I am trying to get a color of touch point on the screen in Android. but it shows me only RGB = (0, 0, 0) value. I have searched other sites. it said that i should add some codes below but it didn`t ...
1
vote
1answer
109 views
How to pick items from warehouse to minimise travel in TSQL?
I am looking at this problem from a TSQL point of view, however any advice would be appreciated.
Scenario
I have 2 sets of criteria which identify items in a warehouse to be selected.
Query 1 ...
0
votes
1answer
268 views
3d ray picking accuracy
I've implemented 3d ray picking and have some problems with accuracy. When picking at the bottom or center of the screen - everything works perfect, but at the top of the screen coordinates seem to ...
0
votes
1answer
115 views
OpenGL picking and finding hitpoint of texture
I'm currently into looking into picking using a ray. I can find which model is selected, but how can I retrieve the position on the texture which is picked? I'm talking about a quad in this case.
...
0
votes
1answer
257 views
IOS GLKit : Turing GLKViewDrawableMultisample4X stops object picking
I am using pixel colour picking to work out which OpenGL object I have clicked on and it works brilliantly
As soon as I turn GLKViewDrawableMultisample4X on in the view, the picking stops working?
I ...
1
vote
2answers
346 views
3d picking with gles
I'm trying to do 3d picking when user taps android phone's screen.
It works sometimes but when i rotate the screen --> the ray doesnt hit the sphere
I'll paste the source code with what i have ...
0
votes
1answer
767 views
LWJGL 3D picking
So I have been trying to understand the concept of 3D picking but as I can't find any video guides nor any concrete guides that actually speak English, it is proving to be very difficult. If anyone is ...
1
vote
2answers
353 views
Color picking with Qt in OpenGL
I've been reading tutorials about picking and that color picking is far the most popular and simplest form.
Tried some tutorials with snowmans as example but it doesn't work for me. When I run the ...
-1
votes
1answer
223 views
OpenGL picking shows nothing after the pick
So I have 2 cubes in a display list and I want one of them be pickable so I can maybe change his color or something like that.
When I click on a cube then the screen turns black and nothing happens, ...
0
votes
2answers
442 views
OpenGL ES - Getting pixel colour not accurate
I'm currently using colour picking in my application.
This works on the PC, however I'm having trouble to get it working on a variety of devices.
This is probably due to the context being set up ...
6
votes
2answers
976 views
Threejs: assign different colors to each vertex in a geometry
I want to do picking via IdMapping in Three.js
Because of performance issues I only have one huge geometry, computed like this:
for (var i = 0; i < numberOfVertices; i += 9) {
p1 = new ...
1
vote
0answers
135 views
How to do Picking via IdMapping in Scenejs?
We have ONE huge Json Mesh like this which we render with scenejs:
{"vertices":[
0.0, 0.0, 0.0,
0.0, 0.0, 2.0,
1.0, 0.0, 2.0,
0.0, 2.0, 2.0, //... next object
],
"normals":[
0.0, 0.0, 1.0,
0.0, 0.0, ...
1
vote
1answer
1k views
OpenGL: Read pixels from FrameBuffer for picking rounded up to 255 (0xFF)
I am trying to implement object picking by packing the vao id to RGBA and render with it to an off-screen buffer which I then try to read with a buffer object.
I am rendering to an off-screen buffer ...
1
vote
2answers
189 views
Best way to do mouse picking on randomly generated tiles
My main problem is I don't understand how to get the position of the generated tiles or how to tell where the mouse is. Should I use collision to detect mouse or something else? Is there something I ...
1
vote
0answers
878 views
Controlling 3D model with mouse XNA 4.0 C#
I am creating a 3D table tennis game and the racquet (created in Maya 2012) is controlled by mouse. I have used picking method to control the racquet however the cursor is not on the racquet, it is ...
0
votes
1answer
81 views
JavaScript if parameter, Ignoring Transparency in images
I need to make if parameters optional. If that makes sense.
If you notice both of my functions are 98% the same, I need to turn this difference into a parameter and it's just not clicking for me.
...
1
vote
1answer
700 views
Color picking in the openGL
i've been trying to implement color picking and it just aint working right. the problem is that if initially paint my model in the different colors that are used for the picking (i mean, i give each ...
0
votes
2answers
792 views
3D picking lwjgl
I have written some code to preform 3D picking that for some reason dosn't work entirely correct! (Im using LWJGL just so you know.)
This is how the code looks like:
if(Mouse.getEventButton() == 1) ...
1
vote
0answers
767 views
XNA Triangle picking on SkinnedModel
My game is using the SkinnedModel pipeline and AnimationPlayer to load and display models.
I've implemented ray picking with triangles by building a list of vertices and indices from the pipeline. ...
0
votes
1answer
385 views
Ray picking - get direction from pitch and yaw
I am attempting to cast a ray from the center of the screen and check for collisions with objects.
When rendering, I use these calls to set up the camera:
GL11.glRotated(mPitch, 1, 0, 0);
...
6
votes
1answer
3k views
iOS 5 + GLKView: How to access pixel RGB data for colour-based vertex picking?
I've been converting my own personal OGLES 2.0 framework to take advantage of the functionality added by the new iOS 5 framework GLKit.
After pleasing results, I now wish to implement the ...
4
votes
4answers
1k views
Got stuck implementing openGL picking
I'm already able to find the world coordinates of the place i clicked, and it also checks this with the depth buffer. For this is used the following code :
GLint viewport[4];
GLdouble modelview[16];
...
1
vote
1answer
239 views
Intersect picked Ray with shapes in OpenGL
I am trying to perform picking in OpenGL, and have 3 questions in 1.
I use twice the Unproject command, once with 0 and once with 1 as near/end planes.
Some article say that 0 and 1 are ok, some ...
7
votes
3answers
2k views
OpenGL ES 2.0 Object Picking on iOS
What is the best method to select objects that have been drawn in OpenGL ES 2.0 (iOS)?
PS. I am drawing points
6
votes
1answer
4k views
Android OpenGL 3D picking
I'm on Android OpenGL-ES 2.0 and after all the limitations that come with it, I can't figure out how to take 2D screen touches to the 3D points I have. I can't get the right results.
I'm trying to ...
4
votes
4answers
269 views
picking without replacement in java
I often* find myself in need of a data structure which has the following properties:
can be initialized with an array of n objects in O(n).
one can obtain a random element in O(1), after this ...
1
vote
1answer
391 views
SDL/Opengl Picking Question
Hi this might seem like a difficult question(or at least to me it is) but im using glUnproject and its not working.
When i use the same function with OpenGL and Winapi it worked like a charm but now ...
0
votes
1answer
264 views
how do i calculate the Touch on openGL using glUnProject
Hi i found upto near plan and far plan.. then how to identify using this i touched on the object.. could anyone pls help me.. Here is My code..
-(Boolean) checkCollission:(CGPoint)winPos
{
...
0
votes
1answer
424 views
Getting picture from Gallery not working on device, but does in emulator
I am using the startActivityForResult to get a picture from the android gallery, however this does not work on my device, yet it works fine on the emulator.
I start the activity like this:
...
0
votes
2answers
350 views
OpenGL find distance to a point
I have a virtual landscape with the ability to walk around in first-person. I want to be able to walk up any slope if it is 45 degrees or less. As far as I know, this involves translating your current ...
1
vote
1answer
897 views
Problems with glReadPixels in android
I am trying to implement an opengl picking system I read about and have hit an issue with glReadPixels. Basically, every node in the scene gets a unique color and when a new touch happens, it renders ...
0
votes
1answer
380 views
Am I doing Picking right?
So I'm working on my Picking function. I have read couple of tutorials and read some posts and I got to this point. But it still doesn't work.
What is wrong with my code?
BOOL Directx::Picking(HWND ...
0
votes
1answer
1k views
Ray picking in first person
Hi :)
I have been searching for weeks and can't find a solution.
Can sum1 please tell me how to implement ray picking when using a first person camera.
Where exactly in the formula are you suppossed ...
2
votes
3answers
1k views
Given a 4x4 homogeneous matrix, how can i get 3D world coords?
So i have an object which is getting rotated then translated and rotated again. I am storing a matrix of these translations as an object member. Now when i come to object picking i need to know the 3D ...
6
votes
2answers
2k views
Best box selection method for a Minecraft clone
I'm making a Minecraft clone as my very first OpenGL project and am stuck at the box selection part. What would be the best method to make a reliable box selection?
I've been going through some AABB ...
2
votes
1answer
1k views
Color coded picking problem in OpenGL
I am making a game, actually a very basic replica of Minecraft, for a class project of mine. I'm stuck in the picking process right now, which would enable me to destroy and create blocks in the game ...


