-
Notifications
You must be signed in to change notification settings - Fork 0
/
VideoFrameAnalyzer.cs
57 lines (49 loc) · 1.92 KB
/
VideoFrameAnalyzer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System.Drawing;
using OpenCvSharp;
using OpenCvSharp.Extensions;
namespace Mystic_Tools
{
/// <summary>
/// ビデオフレームの解析を行うクラスです。
/// </summary>
public class VideoFrameAnalyzer
{
/// <summary>
/// VideoFrameAnalyzerクラスの新しいインスタンスを初期化します。
/// </summary>
/// <param name="videoPath">ビデオファイルのパス</param>
public VideoFrameAnalyzer(string videoPath)
{
capture = new VideoCapture(videoPath);
frame = new Mat();
FrameRate = capture.Get(VideoCaptureProperties.Fps);
}
/// <summary>
/// 指定したフレーム番号のフレームの色を取得します。
/// </summary>
/// <param name="frameNumber">フレーム番号</param>
/// <returns>フレームの色</returns>
public Bitmap GetFrameColorAtFrame(int frameNumber)
{
capture.PosFrames = frameNumber;
capture.Read(frame);
return frame.ToBitmap();
}
/// <summary>
/// 指定したフレーム番号の指定した座標のピクセルの色を取得します。
/// </summary>
/// <param name="frameNumber">フレーム番号</param>
/// <param name="x">X座標</param>
/// <param name="y">Y座標</param>
/// <returns>ピクセルの色</returns>
public Color GetPixelColorAtFrame(int frameNumber, int x, int y)
{
Bitmap frameBitmap = GetFrameColorAtFrame(frameNumber);
return frameBitmap.GetPixel(x, y);
}
private readonly VideoCapture capture;
private readonly Mat frame;
public double FrameRate = 30.0;
public int FrameCount => (int)capture.Get(VideoCaptureProperties.FrameCount);
}
}