-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FindFrames command #110
Conversation
I'll look at this once we close the other PR. I believe this is based off of that one. |
@vishakha041, these are independent, as you can see following the commits. So you can go ahead and review it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it might be better to do the Operator change before this one so you can have a cleaner version of FindFrames and remove your comment about the hack.
This is a quick review for some things that were noticeable.
ffc3f81
to
694e7ef
Compare
All comments addressed. Good to go for me! |
I've just did an interactive rebase on all three patches to sign them off. All the changes look good to me. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
…ublic Signed-off-by: mahircg <[email protected]>
Signed-off-by: mahircg <[email protected]>
Signed-off-by: mahircg <[email protected]>
Created a separate commit for fixing a bug in Video command response. Should be good to go. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the comments do not indicate a problem, then this looks fine.
* Fix CIDs 3428250, 3399517, 3399721 * Fix CID 3399499 * Fix CIDs 3399722 and 3399506 * Fix CID 3399609 and 3399442 * Fix CID 3399441 * Fix 3399465 and 3399606 * fix 3399466 * Fix CID 3399404 and 3399679 * Fix CID 3441993 Signed-off-by: tmcourie <[email protected]> Co-authored-by: tmcourie <[email protected]> Co-authored-by: Ragaad <[email protected]>
This patch introduces 'FindFrames' command, that searches for the given
video name and returns a list of frames from the video if it is found.
Currently, FindFrame command relies on OpenCV's frame iteration
capabilities. Thus, the entire video is loaded into memory to be
decoded. In future, the video loading and decoding should be done only
on the requested frame interval.
Signed-off-by: mahircg [email protected]