1

我正在研究熵,我从 .mp4 文件中获取连续帧,我想用前一帧计算当前帧的熵,如果它们之间的熵不为零,那么它应该检查帧,否则它应该忽略帧,它应该保存前一帧并在 2 秒后获取当前帧,如果熵为零,它应该忽略它,然后再次等待 2 秒这是我的代码:

capture.open("recog.mp4");
if (!capture.isOpened()) {
    cerr << "can not open camera or video file" << endl;
}

while(1)
{
    capture >> current_frame;
    if (current_frame.empty())
        break;
    if (! previous_frame.empty())  {
       subtract(current_frame, previous_frame, pre_img);
       Mat hist;
       int channels[] = {0};
       int histSize[] = {32};
       float range[] = { 0, 256 };
       const float* ranges[] = { range };

       calcHist( &pre_img, 1, channels, Mat(), // do not use mask
                 hist, 1, histSize, ranges,
                 true, // the histogram is uniform
                 false );

       Mat histNorm = hist / (pre_img.rows * pre_img.cols);
       double entropy = 0.0;
       for (int i=0; i<histNorm.rows; i++)
       {
          float binEntry = histNorm.at<float>(i,0);
          if (binEntry != 0.0)
          {
            entropy -= binEntry * log(binEntry);
          }
          else
          {
            //ignore the frame andgo for next , but how to code it ? is any function with ignore ?
          }
waitKey(10);
current_frame.copyTo(previous_frame); 
}

据我的页面工作告诉我,这是仅计算当前图像的一个图像的熵,并且当下一个图像进入处理时它成为前一个图像。当我像这样使用它时,它在 log2 中出现错误,entropy -= binEntry * log2(binEntry);请你帮我告诉当熵为零时如何忽略帧,以便 .mp4 继续运行,我是否需要cvwaitkey(2)在 2 后使用来检查 .mp4秒,意思是 .mp4 正在运行,但我忽略了帧

忽略均值,当它从前一帧减去当前帧且熵为 0,比前一帧保持前一帧,当前未变为前一帧,前一帧等待下一个当前图像 2 秒,然后对其执行任务

4

1 回答 1

1

要忽略一定数量的帧,只需从流中读取它们。

for(int i=0; i<60; i++)
    capture >> current_frame;

如果您的视频有 30fps,这将跳过 2 秒的视频。

为了防止您的熵大于某个阈值,您需要添加如下内容:

if ( entropy > 1.0 )
{
    // do something
}

我使用了一个阈值,因为由于噪声,不同帧之间的熵可能永远不会为零。

如果您的编译器没有为您提供该log2功能,您可以按照此处所述简单地模拟它。

于 2013-09-02T20:47:34.377 回答