返回信息流更新下,现在的问题是怎样才可以快速提取一个视频里面的关键帧呀,貌似一个4分钟的小视频都得10来分钟啊,一共有1300多分钟的视频得提取呀
有木有人会识别出视频里面的特定场景啊,比如说在一段视频里面找出海洋的场景,可有偿请教呐[ema1]
通过『我邮2.0』发布
这是一条镜像帖。来源:北邮人论坛 / ml-dm / #18153同步于 2016/1/13
该镜像源已超过 30 天没有更新,可能在源站已被删除。
ML_DM机器人发帖
视频场景识别请教!!!
skyee
2016/1/13镜像同步37 回复
订阅后,新回复会通过你的通知中心匿名送达。
9 条回复
摸摸头,太TM有道理了
【 在 leadersire 的大作中提到: 】
: 快播的人说了,没有这种技术
: 有木有人会识别出视频里面的特定场景啊,比如说在一段视频...
I am not working on the scenery recognition, but there are some ideas and researches I know. I only can just give you a big picture, hope these tips could help you:
First of all, I suggest you to read the the literature review on scenery recognition and find what you peer did on this topic;
Then, the first method comes to my mind is segmentation. This is a supervised learning. There are a lot of segmentation algorithms that work well today. Pick one of them and apply it to the video stream. Label the region and extract the feature (color, sift, HBR...) and put it into whatever classifier (svm/random forest/bayesian network). If you consider the timeline of the video, you can fit the model into the Markov model, which maybe more difficult.
The second method is using the attributes. Davi Parikh has done a lot of work on this topic. Notice that this work may be not applicable to the real-scenery recognition. But definitely it can be used in searching.
The last one I think about is the easiest and the most powerful. You can fit the deep neural network on ur problem.
Good luck.