All Questions
Tagged with opticalflow matlab
41 questions
0
votes
0
answers
81
views
Is it possible to extract the fall velocity of a ball using an opticalflow function in matlab's computer vision toolbox?
In matlab's computer vision toolbox, I want to measure the velocity of a ball as it falls through water using the opticalflow function.
Currently, using the code I made, optical flow is applied to the ...
-1
votes
1
answer
5k
views
Calculating Normalized Root Mean Square Error
I am trying to calculate normalized root square error (NRMSE) between my optical flow estimation and the provided ground truth
I think I calculated the RMSE correctly, However, the normalized always ...
0
votes
0
answers
93
views
HS and LK Robust Optical flow
I am trying to make LK and HS original algorithm robust using Black & Anandan Lorentzian method
I did not know how to apply this concept in my MATLAB code ! ... and when I tried to apply what I ...
0
votes
0
answers
72
views
Coding a FDS in MATLAB
In the context of a variational optical flow formulation, I have the following coupled elliptic PDEs, which are the Euler-Lagrange equations of a minimizing functional:
where is the unknown vector ...
2
votes
0
answers
1k
views
Velocity vector (optical flow etc.) to RGB color conversion
I have computed an optical flow and I wish to convert this to images.
Following the tutorials of opencv2:
mag, ang = cv2.cartToPolar(flow[...,0], flow[...,1])
hsv = np.zeros_like(cv2.imread(...
2
votes
1
answer
134
views
Matlab opticalFlow components to complex vector field
I am trying to update legacy code that uses the no longer supported MATLAB call to
opticalFlowClass = vision.OpticalFlow('OutputValue', ...
'Horizontal and vertical components in complex ...
0
votes
0
answers
222
views
Matlab Vector field of displacement
given two different images, how can I compute and plot the vector field of the displacement between these two images?
I know matlab has a tool called opticalflow that allows me to do something ...
0
votes
1
answer
413
views
Calculate phase angle in Optical flow
i want to an understanding about phase angle of optical flow. if I know about particular point Vx and Vy ( velocity), Then how can I calculate phase angle(radian) using the above parameters.
0
votes
2
answers
1k
views
efficient matlab implementation for Lukas-Kanade step
I got an assignment in a video processing course - to implement the Lucas-Kanade algorithm. Since we have to do it in the pyramidal model, I first build a pyramid for each of the 2 input images, and ...
0
votes
0
answers
401
views
How to set image section size of optical flow?
I am trying find optical flow vector using the Lucas-Kanade method using MATLAB inbuilt function opticalflowlk, in this method we need to divide each image into smaller section of given window size.
...
0
votes
1
answer
234
views
why i get error at opticFlow = opticalFlowHS; matlab2015a
i don't know why i get error at opticFlow = opticalFlowHS; in matlab2015a
Undefined function or variable 'opticalFlowHS'.
Error in test (line 3)
opticFlow = opticalFlowHS;
these toolboxes already ...
2
votes
0
answers
658
views
calcopticalflowpyrlk function in opencv 3.0
I'm trying to track something in some frames. I know calcOpticalFlowPyrLK is supposed to be used for sparse tracking problems. However, I thought it wouldn't really hurt if I just try to track all ...
0
votes
1
answer
697
views
what is the difference between optical flow and spatio temporal
I have read about optical flow and spatiotemporal features and found that:
we can get from the optical flow the velocity and orientation of the object, whereas, we can get the location and the time ...
1
vote
1
answer
3k
views
how to apply inverse optical flow vector on an image?
I have a small project on Moving object detection in moving camera in which i have to use negative optical flow vector to minimize ego motion compensation. I have a video and some particular ...
2
votes
1
answer
2k
views
(Matlab) How to modify read only opticalflow object properties
I am using Matlab to analyse video optical flow and what I want to do is weighing the optical flow between video frames.
My problem is I don't know how to modify the read only opticalFlow object ...