Commit 5af16792 by 鲁志-悦动

新的输出窗口 And 打Release包

parent a14371b2
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}

......@@ -10,11 +10,11 @@ none
false
2-725104376
21870986562
3947974750
17-1462717611
31364711570
17-1683084370
Themes\Generic.xaml;Widgets\FootballFieldPanel\FootballFieldPanel.xaml;
True
False

C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Common\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Common\Themes\Generic.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Common\Widgets\FootballFieldPanel\FootballFieldPanel.xaml;;
......
namespace VIZ.FGOUT.Domain
{
public class NewWindowModel
{
}
}
......@@ -83,6 +83,7 @@
<Compile Include="Message\Setting\EndPlaceModel.cs" />
<Compile Include="Message\Setting\InvalidPlaceModel.cs" />
<Compile Include="Message\Setting\MarkModel.cs" />
<Compile Include="Message\Setting\NewWindowModel.cs" />
<Compile Include="Message\Setting\ReplayInPortModel.cs" />
<Compile Include="Message\Setting\ReplayModel.cs" />
<Compile Include="Message\Setting\ReplayOutPointModel.cs" />
......
e5d520f069224ea49e66eb87e09bd80ce5e68404
313a190666ddd7f95a6da02439a82c6526f22cfe
......@@ -629,6 +629,16 @@
IsEnabled="{Binding CleanEnable}"
Style="{StaticResource ButtonStyle}"
Visibility="{Binding ReplaySendVisibility, Mode=TwoWay}" />
<Button
Grid.Row="5"
Grid.Column="0"
Width="100"
Height="40"
Margin="10"
Command="{Binding Path=NewWindowCommand}"
Content="New Window"
Style="{StaticResource ButtonStyle}" />
</Grid>
</WrapPanel>
<!--<WrapPanel
......
......@@ -109,6 +109,9 @@ namespace VIZ.FGOUT.Module
this.MattStartCommand = new VCommand(this.MattStart);
//算法结束抠图
this.MattEndCommand = new VCommand(this.MattEnd);
//打开一个新的输出窗口
this.NewWindowCommand = new VCommand(this.NewWindow);
}
/// <summary>
......@@ -499,6 +502,18 @@ namespace VIZ.FGOUT.Module
public VCommand VideoStopCommand { get; set; }
#endregion
#region 打开一个新的输出窗口
public VCommand NewWindowCommand { get; set; }
private void NewWindow()
{
var newWindowModel = new NewWindowModel();
ApplicationDomain.MessageManager.Send(newWindowModel);
}
#endregion
#region UESetting
public VCommand UESettingCommand { get; set; }
......
......@@ -267,7 +267,7 @@
VerticalAlignment="Bottom"
Fill="White" />
<!-- UE预设 -->
<TextBlock
<!--<TextBlock
Grid.Row="5"
VerticalAlignment="Center"
FontSize="18"
......@@ -491,7 +491,7 @@
Height="1"
Margin="0,0,10,0"
VerticalAlignment="Bottom"
Fill="White" />
Fill="White" />-->
<!--<TabControl
Grid.Row="2"
Grid.RowSpan="2"
......
......@@ -16,8 +16,8 @@ namespace VIZ.FGOUT.Module
WPFHelper.BindingViewModel(this, new AlgorithmSettingPanelViewModel());
_Sports_.ItemsSource = new List<string>() { "", "跳远", "三级跳", "跳马", "标枪", "自由操", "单杠", "高低杠", "单人3m跳水", "单人10m跳水", "双人3m跳水", "双人10m跳水", "双人速度攀岩" };
_Eases1_.ItemsSource = _Eases2_.ItemsSource = new List<string>() { "", "Linear", "Step", "SinusoidalIn", "SinusoidalOut", "SinusoidalInOut", "EaseIn", "EaseOut", "EaseInOut", "ExpoIn",
"ExpoOut", "ExpoInOut", "CircularIn", "CircularOut", "CircularInOut" };
//_Eases1_.ItemsSource = _Eases2_.ItemsSource = new List<string>() { "", "Linear", "Step", "SinusoidalIn", "SinusoidalOut", "SinusoidalInOut", "EaseIn", "EaseOut", "EaseInOut", "ExpoIn",
//"ExpoOut", "ExpoInOut", "CircularIn", "CircularOut", "CircularInOut" };
}
}
}
......@@ -209,7 +209,7 @@ namespace VIZ.FGOUT.Module
_initItem = PresetsItem = dics[number];
var config = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindOne(p => p.Number == number);
//初始化UE预设数据
InitUEDetail(config.Data);
//InitUEDetail(config.Data);
//初始化算法数据
InitAlgorithmData(config.AlgorithmData);
}
......@@ -380,7 +380,7 @@ namespace VIZ.FGOUT.Module
if (PresetsItem != null)
{
//发送UE预设数据
PresetSave();
//PresetSave();
//发送算法参数
SendAlgorithmParameters();
......@@ -610,16 +610,16 @@ namespace VIZ.FGOUT.Module
//ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.Upsert(javelinThrowConfig);
#endregion
if (String.IsNullOrEmpty(PresetsItem))
{
UEDetailEmpty();
}
else
{
//if (String.IsNullOrEmpty(PresetsItem))
//{
// UEDetailEmpty();
//}
//else
//{
var config = GetConfig(PresetsItem);
InitUEDetail(config.Data);
//InitUEDetail(config.Data);
InitAlgorithmData(config.AlgorithmData);
}
//}
}
private void UEDetailEmpty()
......
......@@ -19,12 +19,6 @@
mc:Ignorable="d">
<UserControl.Resources>
<ResourceDictionary>
<!--<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/Button/Button_NdiView.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/Button/Button_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/CheckBox/CheckBox_NdiView.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/RadioButton/RadioButton_NdiView.xaml" />
</ResourceDictionary.MergedDictionaries>-->
<fcore:Bool2VisibilityConverter x:Key="Bool2VisibilityConverter" />
<fcore:Bool2BoolConverter x:Key="Bool2BoolConverter" />
<fcore:StringAppendConverter x:Key="StringAppendConverter" />
......
......@@ -185,6 +185,9 @@ namespace VIZ.FGOUT.Module
//清空入点标记
ApplicationDomain.MessageManager.Register<CleanInPointsModel>(this, this.CleanInPoints);
//打开一个新的输出窗口
ApplicationDomain.MessageManager.Register<NewWindowModel>(this, this.NewWindow);
}
private void ReplayOutPort(ReplayOutPointModel replayOutPointModel)
......@@ -258,6 +261,14 @@ namespace VIZ.FGOUT.Module
ndiView.canvas1.Children.Clear();
}
private void NewWindow(NewWindowModel newWindowModel)
{
if (this.ViewKey != NDIViewKeys.CAM_1)
return;
NewWindowView newWindowView = new NewWindowView();
newWindowView.Show();
}
private void UESetting(UESettingModel ueSettingModel)
{
if (this.ViewKey != NDIViewKeys.CAM_1)
......
<Window
x:Class="VIZ.FGOUT.Module.SystemSetting.View.NewWindowView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:domain="clr-namespace:VIZ.FGOUT.Domain;assembly=VIZ.FGOUT.Domain"
xmlns:local="clr-namespace:VIZ.FGOUT.Module"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="NewWindow"
Width="800"
Height="450"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<Grid Background="#2C333B">
<local:NDIView
IsHiddenSetting="True"
NDIKey="{x:Static Member=domain:NDIViewKeys.CAM_2}"
VideoBorderBrush="#B85069" />
</Grid>
</Window>
using System.Windows;
namespace VIZ.FGOUT.Module.SystemSetting.View
{
/// <summary>
/// NewWindow.xaml 的交互逻辑
/// </summary>
public partial class NewWindowView : Window
{
public NewWindowView()
{
InitializeComponent();
}
}
}
......@@ -241,6 +241,9 @@
<Compile Include="SystemSetting\View\MattingImagePanelView.xaml.cs">
<DependentUpon>MattingImagePanelView.xaml</DependentUpon>
</Compile>
<Compile Include="SystemSetting\View\NewWindowView.xaml.cs">
<DependentUpon>NewWindowView.xaml</DependentUpon>
</Compile>
<Compile Include="SystemSetting\View\PackageSettingPanelView.xaml.cs">
<DependentUpon>PackageSettingPanelView.xaml</DependentUpon>
</Compile>
......@@ -383,6 +386,10 @@
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="SystemSetting\View\NewWindowView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="SystemSetting\View\PackageSettingPanelView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C2A844093FC01C7C4B85B4490D8FC7C48519F47C8585C4E6427F9B7D13310026"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E3DBF502DB607B765C29580D05539CE16DBD8DCD2E297B5EFB42D5AFAE520EF7"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 925 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 935 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 939 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 949 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 986 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 996 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C2A844093FC01C7C4B85B4490D8FC7C48519F47C8585C4E6427F9B7D13310026"
#pragma checksum "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E3DBF502DB607B765C29580D05539CE16DBD8DCD2E297B5EFB42D5AFAE520EF7"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -74,7 +74,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 925 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 935 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam1;
......@@ -82,7 +82,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 939 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 949 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam3;
......@@ -90,7 +90,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 986 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
#line 996 "..\..\..\..\..\NDIMainView\View\NDIMainView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.FGOUT.Module.NDIView cam2;
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B14112148E7232271B137278D90C47D40839C90FBA7765B8F7224C9344DFE73E"
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "DEBEE15FCB5CFADA4B8FA0173F9349B7D666163EF1A2472053C8ECA51C06EA89"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -55,46 +55,6 @@ namespace VIZ.FGOUT.Module {
#line default
#line hidden
#line 300 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases1_;
#line default
#line hidden
#line 311 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases2_;
#line default
#line hidden
#line 334 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton EnableSpline;
#line default
#line hidden
#line 454 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyX;
#line default
#line hidden
#line 477 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyY;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
......@@ -128,21 +88,6 @@ namespace VIZ.FGOUT.Module {
case 1:
this._Sports_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 2:
this._Eases1_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 3:
this._Eases2_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 4:
this.EnableSpline = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
case 5:
this.MovementOnlyX = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
case 6:
this.MovementOnlyY = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
}
this._contentLoaded = true;
}
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B14112148E7232271B137278D90C47D40839C90FBA7765B8F7224C9344DFE73E"
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "DEBEE15FCB5CFADA4B8FA0173F9349B7D666163EF1A2472053C8ECA51C06EA89"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -55,46 +55,6 @@ namespace VIZ.FGOUT.Module {
#line default
#line hidden
#line 300 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases1_;
#line default
#line hidden
#line 311 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases2_;
#line default
#line hidden
#line 334 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton EnableSpline;
#line default
#line hidden
#line 454 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyX;
#line default
#line hidden
#line 477 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyY;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
......@@ -128,21 +88,6 @@ namespace VIZ.FGOUT.Module {
case 1:
this._Sports_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 2:
this._Eases1_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 3:
this._Eases2_ = ((System.Windows.Controls.ComboBox)(target));
return;
case 4:
this.EnableSpline = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
case 5:
this.MovementOnlyX = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
case 6:
this.MovementOnlyY = ((System.Windows.Controls.Primitives.ToggleButton)(target));
return;
}
this._contentLoaded = true;
}
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B9BB199B9AE46746348239A2D459CA103BC232A1E4BAE6A28DDC12BD0E16B322"
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "62506BB5D5E61B6642528CA82F199E6B85D4AFB7A5D2817BDE2AEB745D984638"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 308 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 302 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border Border;
......@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 318 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.Framework.Common.VideoControl video;
......@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 330 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas canvas1;
......@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 415 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 409 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _Setting_;
......@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 436 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 430 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_;
......@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 450 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 444 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_;
......@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module {
case 2:
this.Border = ((System.Windows.Controls.Border)(target));
#line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 304 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown);
#line default
#line hidden
#line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 305 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp);
#line default
#line hidden
#line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 306 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove);
#line default
#line hidden
#line 313 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 307 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown);
#line default
......
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B9BB199B9AE46746348239A2D459CA103BC232A1E4BAE6A28DDC12BD0E16B322"
#pragma checksum "..\..\..\..\..\NDIView\View\NDIView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "62506BB5D5E61B6642528CA82F199E6B85D4AFB7A5D2817BDE2AEB745D984638"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -60,7 +60,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 308 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 302 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Border Border;
......@@ -68,7 +68,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 318 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal VIZ.Framework.Common.VideoControl video;
......@@ -76,7 +76,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 330 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 324 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas canvas1;
......@@ -84,7 +84,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 415 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 409 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _Setting_;
......@@ -92,7 +92,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 436 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 430 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _RestartBtn_;
......@@ -100,7 +100,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 450 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 444 "..\..\..\..\..\NDIView\View\NDIView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Button _StopBtn_;
......@@ -143,25 +143,25 @@ namespace VIZ.FGOUT.Module {
case 2:
this.Border = ((System.Windows.Controls.Border)(target));
#line 310 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 304 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonDown);
#line default
#line hidden
#line 311 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 305 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Border_MouseLeftButtonUp);
#line default
#line hidden
#line 312 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 306 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.Border_MouseMove);
#line default
#line hidden
#line 313 "..\..\..\..\..\NDIView\View\NDIView.xaml"
#line 307 "..\..\..\..\..\NDIView\View\NDIView.xaml"
this.Border.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Border_OnPreviewMouseRightButtonDown);
#line default
......
3b8e09664c65a6a50551da999b589c53f93c1785
a248c30fe9313ed2d352381fed47d331555b82ed
......@@ -911,3 +911,5 @@ C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\bin\x64\Debug\dll\x86\OpenCvSharpEx
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\bin\x64\Debug\dll\x86\opencv_videoio_ffmpeg480.dll
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\bin\x64\Debug\dll\x64\OpenCvSharpExtern.dll
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\bin\x64\Debug\dll\x64\opencv_videoio_ffmpeg480_64.dll
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\SystemSetting\View\NewWindowView.g.cs
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\SystemSetting\View\NewWindowView.baml
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
22-808211288
23-1787007427
4-699044453
91-804925372
92-1486942549
151674092382
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UEControlPanelView.xaml;SystemSetting\View\UESettingPanelView.xaml;
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\NewWindowView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UEControlPanelView.xaml;SystemSetting\View\UESettingPanelView.xaml;
False
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
22-808211288
23-1787007427
4-699044453
92920518115
93238500938
151674092382
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UEControlPanelView.xaml;SystemSetting\View\UESettingPanelView.xaml;
NDIMainView\View\NDIMainView.xaml;NDIPreviewView\View\NDIPreviewView.xaml;NDISettingView\View\AlgorithmSettingPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmCablewayPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmNearPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSinglePanelView.xaml;NDISettingView\View\Algorithm\AlgorithmSixteenPanelView.xaml;NDISettingView\View\Algorithm\AlgorithmTacticsPanelView.xaml;NDISettingView\View\NDISettingPanelView.xaml;NDISettingView\View\NDISettingView.xaml;NDIView\View\NDIView.xaml;SystemSetting\View\AboutPanelView.xaml;SystemSetting\View\CheckDataPanelView.xaml;SystemSetting\View\HotkeySettingPanelView.xaml;SystemSetting\View\MattingImagePanelView.xaml;SystemSetting\View\NewWindowView.xaml;SystemSetting\View\PackageSettingPanelView.xaml;SystemSetting\View\PreviewSettingPanelView.xaml;SystemSetting\View\ReplayPanelView.xaml;SystemSetting\View\StyleSettingPanelView.xaml;SystemSetting\View\SystemSettingView.xaml;SystemSetting\View\UEControlPanelView.xaml;SystemSetting\View\UESettingPanelView.xaml;
True
False

C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;;
......@@ -15,6 +15,7 @@ FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\AboutPanelView.
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\CheckDataPanelView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\HotkeySettingPanelView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\MattingImagePanelView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\NewWindowView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\PackageSettingPanelView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\PreviewSettingPanelView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\SystemSetting\View\ReplayPanelView.xaml;;
......
......@@ -14,6 +14,7 @@
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
......@@ -24,10 +25,11 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<AutorunEnabled>true</AutorunEnabled>
<ApplicationRevision>1</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
......@@ -72,6 +74,18 @@
<PropertyGroup>
<ApplicationIcon>logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>AC7480946E5737474A20E4AE432B639A6BAC037C</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>VIZ.FGOUT_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="BouncyCastle.Crypto, Version=1.8.9.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\Portable.BouncyCastle.1.8.9\lib\net40\BouncyCastle.Crypto.dll</HintPath>
......@@ -195,6 +209,7 @@
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Include="VIZ.FGOUT_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
......
This source diff could not be displayed because it is too large. You can view the blob instead.
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,时间切片,算法模式,2023/2/9 11:45:02,2023/2/9 11:45:02,00:00:00.0489995
2,CAM_1,CAM_1,时间切片,算法模式,2023/2/9 11:45:02,2023/2/9 11:45:02,00:00:00.2269985
3,CAM_2,CAM_2,时间切片,算法模式,2023/2/9 11:45:02,2023/2/9 11:53:15,00:08:13.0964307
4,CAM_1,CAM_1,时间切片,算法模式,2023/2/9 11:53:15,2023/2/9 13:59:42,02:06:27.0399386
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 10:53:14,2023/2/15 10:53:15,00:00:00.3759990
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 10:53:15,2023/2/15 10:53:50,00:00:35.3297301
3,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 10:53:50,2023/2/15 10:54:10,00:00:19.6329413
4,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 10:54:10,2023/2/15 10:54:37,00:00:27.2022706
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 10:55:01,2023/2/15 10:55:02,00:00:00.1900008
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 10:55:02,2023/2/15 10:55:19,00:00:17.3321149
3,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 10:55:19,2023/2/15 10:55:24,00:00:05.2340235
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 10:56:43,2023/2/15 10:56:44,00:00:00.3169992
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 10:56:44,2023/2/15 10:59:19,00:02:35.7585147
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 11:43:17,2023/2/15 11:43:18,00:00:00.1990004
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 11:43:18,2023/2/15 11:43:36,00:00:18.5112256
3,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 11:43:36,2023/2/15 11:43:51,00:00:15.2109975
4,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 11:43:51,2023/2/15 11:44:11,00:00:19.2995793
5,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 11:44:11,2023/2/15 11:44:19,00:00:08.0218545
6,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 11:44:19,2023/2/15 11:44:55,00:00:35.8640248
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 13:49:23,2023/2/15 13:49:23,00:00:00.1800006
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 13:49:23,2023/2/15 13:50:53,00:01:30.0385732
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 13:53:11,2023/2/15 13:53:11,00:00:00.1820002
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 13:53:11,2023/2/15 13:53:16,00:00:04.9010003
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 13:54:16,2023/2/15 13:54:16,00:00:00.1710002
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 13:54:16,2023/2/15 13:59:35,00:05:19.0461309
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 15:22:47,2023/2/15 15:22:47,00:00:00.1930001
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 15:22:47,2023/2/15 15:22:54,00:00:07.2250013
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 15:24:52,2023/2/15 15:24:52,00:00:00.1989973
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 15:24:52,2023/2/15 15:25:03,00:00:10.7700024
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 15:27:30,2023/2/15 15:27:30,00:00:00.1940009
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 15:27:30,2023/2/15 15:32:40,00:05:09.5831835
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 15:45:11,2023/2/15 15:45:11,00:00:00.2079977
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 15:45:11,2023/2/15 15:47:04,00:01:53.1940013
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/2/15 16:41:27,2023/2/15 16:41:27,00:00:00.2140018
2,CAM_2,CAM_2,单人机位,算法模式,2023/2/15 16:41:27,2023/2/15 16:42:35,00:01:07.5340030
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/5/24 14:06:22,2023/5/24 14:06:23,00:00:01.3264497
2,CAM_2,CAM_2,单人机位,算法模式,2023/5/24 14:06:23,2023/5/24 14:06:27,00:00:03.4693127
编号,窗口,窗口名称,机位,操作,开始时间,结束时间,持续时间
1,CAM_1,CAM_1,单人机位,算法模式,2023/5/24 14:06:41,2023/5/24 14:06:42,00:00:01.2955345
2,CAM_2,CAM_2,单人机位,算法模式,2023/5/24 14:06:42,2023/5/24 14:06:46,00:00:03.9760606
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment