Tagged Questions
-1
votes
1answer
66 views
coordinates of the highest intense point of an image detected by webcam [duplicate]
Possible Duplicate:
Function to return coordinates of the maximum intensity point of the image grabbed from a webcam
I want to get the coordinates of the highest intense point in an image ...
0
votes
1answer
2k views
OpenCV Lucas Kanade optical flow
I am working ona code where i have to find the trajectories of all the corner points that i am interested in. So, for the same, i used LKPyr Optical flow, which uses the corner points of the previous ...
0
votes
2answers
135 views
how to track a struct member value change in C?
struct STATE{
uint8 bit;
uint8 cop;
}
STATE *state_array[1024];
state_aray[0]->bit = 8;
state_aray[0].cop = 8;
state_aray[1]->bit = 0;
state_aray[1].cop = state_aray[1]->bit & 8 != ...