-
Notifications
You must be signed in to change notification settings - Fork 476
Closed
Description
Thanks for your excellent work and code!
as above, when i using the dense flow to extract images and opt flow, the FATAL occure
2016-08-28 21:16:28,702 FATAL [default] Check failed: [video_stream.isOpened()] Cannot open video stream "true" for optical flow extraction.
2016-08-28 21:16:28,702 WARN [default] Aborting application. Reason: Fatal log at [/home/wanghao/my_project/temporal-segment-networks/lib/dense_flow/src/dense_flow_gpu.cpp:17]
my python is 2.7.6, i think maybe the reason of function pool.map, can you share some thoughts about it?
Thanks a lot!
Activity
yjxiong commentedon Aug 28, 2016
This log message means that it cannot open the video file. It may be due
to some video files missing. Or it may be caused by OpenCV not having
VideoIO support.
On Sunday, August 28, 2016, Hawk Wang notifications@github.com wrote:
Best regards,
Yuanjun
hawklucky commentedon Aug 28, 2016
thanks a lot, just fixed by remove the space between the sys cmd in python
GBJim commentedon Sep 7, 2016
Hi @hawklucky, can you share your modifications in detail? I have similar problem.
Updated: My problem is solved :)
[-]FATAL occured when extract images and opt flow using scripts/extract_optical_flow.sh[/-][+]DETAILS about using scripts/extract_optical_flow.sh[/+]hawklucky commentedon Sep 14, 2016
I train the ucf101 successfully with the data size 240_320_3, but failed when the hmdb51 the data size is different, I already realize that. By the way, May I ask that when I extract the image and flow, should I set the size 240_320 or 256_340 ? Thanks!
yjxiong commentedon Sep 14, 2016
Setting 256*340 will be better. But both sizes should work.
yjxiong commentedon Sep 14, 2016
@hawklucky
BTW, you mentioned "failed". What exactly does "failed" mean?
Also, did you update to the latest TSN codebase?
hawklucky commentedon Sep 14, 2016
@yjxiong I use the branch of opencv-3.1 in dense_flow, it's no resize operation before calc flow and also no size args to use, so when i extract the image and flow, it's just the size of the origin data size, so it's failed because the size in CNN.
yjxiong commentedon Sep 14, 2016
Alright, if it is the case, I may suggest a workaround for this.
In the
prototxt
file, you can ask the data layer to pre-scale the input image before augmentation. To do this, setin
video_data_param
of theVideoData
layers.hawklucky commentedon Sep 14, 2016
Yes, it's convenient to solve the problem by using new_width and new_height, thanks.
plaovem commentedon May 11, 2017
@hawklucky hello, I meet the same problem as you. Could you tell me which py file you changed to fix the problem on removing the space between the sys cmd? Thank you.
I have found the problem:
in the tsn/tools/build_of.py,
when using the CommandLineParser, the original line is -f {} -x {} -y {} -i {} -b 20 -t 1 -d {} -s 1 -o {} -w {} -h {}, however, in the new verision opencv, it should be written in -f={} -x={} -y={} -i={} -b=20 -t=1 -d={} -s=1 -o={} -w={} -h={}.
If anyone meet the problem say "Cannot open video stream # "true" for optical flow extraction", this solution may solve your question.
buaa-luzhi commentedon Aug 31, 2017
@plaovem
you are right, thank you very much!
Malithi-gif commentedon Mar 14, 2021
@hawklucky I'm working with TSN. I having the same problem as you. the empty file generated? How did you solve it?