Commit 28532903 by 鲁志-悦动

客户端启动给算法发送2条消息调整

parent 47270184
//------------------------------------------------------------------------------
// <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
......@@ -56,7 +56,7 @@ namespace VIZ.FGOUT.Connection
message.timecode = package.timecode;
// message.timecode = package.timecode;
if (package.signal == "track")
if (package.signal == "track")
{
if (package.box != null)
{
......
......@@ -44,16 +44,14 @@ namespace VIZ.FGOUT.Connection
}
Signal = AlgorithmPackageSignal.detect;
}
else if(package.signal == "track")
else if (package.signal == "track")
{
if(package.box!=null)
if (package.box != null)
{
RawRectangleF target = new RawRectangleF(package.box[0], package.box[1], package.box[2], package.box[3]);
message.bboxes.Add(target);
}
Signal = AlgorithmPackageSignal.track;
}
//if (package.roi != null && package.roi.Count == 4)
......@@ -61,9 +59,8 @@ namespace VIZ.FGOUT.Connection
// message.roi = new RawRectangleF(package.roi[0], package.roi[1], package.roi[2], package.roi[3]);
//}
// message.center_x = package.center_x;
// message.center_y = package.center_y;
// message.center_x = package.center_x;
// message.center_y = package.center_y;
ApplicationDomainEx.MessageManager.Send(message);
}
}
......
using System.Collections.Generic;
using VIZ.FGOUT.Storage;
using VIZ.Framework.Connection;
namespace VIZ.FGOUT.Connection
......@@ -93,18 +94,22 @@ namespace VIZ.FGOUT.Connection
{
package.id = option.id;
// package = option.enable_sendto_crop ? 1 : 0;
// package = option.enable_sendto_crop ? 1 : 0;
//package.track_xy = option.target_bbox;
//package.signal = AlgorithmPackageSignal.track;
//手动模式
package.mode = AlgorithmPackageSignal.manual_mode;
//package.mode = AlgorithmPackageSignal.manual_mode;
//自动模式
package.mode = AlgorithmPackageSignal.auto_mode;
package.timecode = option.timecode;
manager.SendJson(package);
}
public static void AutoMode(UdpEndpointManager manager, string algorithmData)
{
manager.SendJsonString(algorithmData);
}
public static void MatImageCmd(UdpEndpointManager manager, AlgorithmPackage__MatCmd package)
{
......
......@@ -12,30 +12,37 @@ namespace VIZ.FGOUT.Connection
/// 项目代码
/// </summary>
public string SportsCode { get; set; }
/// <summary>
/// 进入结束区域后保留多少张抠像
/// </summary>
public int Maintain_matting_n { get; set; }
/// <summary>
/// 抠图间隔
/// </summary>
public int Matting_interval { get; set; }
/// <summary>
/// 延迟多少帧结束
/// </summary>
public int Extend_frame { get; set; }
/// <summary>
/// 初始区域水平方向外扩像素数
/// </summary>
public int Pad_det_x { get; set; }
/// <summary>
/// 初始区域垂直方向外扩像素数
/// </summary>
public int Pad_det_y { get; set; }
/// <summary>
/// 跟踪过程中外扩像素数
/// </summary>
public int Pad_det_square { get; set; }
/// <summary>
/// 抠像缩放系数
/// </summary>
......
......@@ -128,6 +128,10 @@
<Project>{cbfeeb64-86f4-4ec6-90b2-549462687224}</Project>
<Name>VIZ.FGOUT.Domain</Name>
</ProjectReference>
<ProjectReference Include="..\VIZ.FGOUT.Storage\VIZ.FGOUT.Storage.csproj">
<Project>{B158AAA2-A738-4017-8554-3A104FBF439D}</Project>
<Name>VIZ.FGOUT.Storage</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="UDP\Algorithm\Info\" />
......
241c60502b65a9946cf710cfff79d0f890cb784f
879982a20dca0c414aba6411ab84437d1681c4ab
......@@ -135,8 +135,6 @@ namespace VIZ.FGOUT.Module
log.Info(hotkey+"发送开始命令:" + algorithmPackage__MatCmd.mode+"" + algorithmPackage__MatCmd.signal);
AlgorithmSender.MatImageCmd(manager, algorithmPackage__MatCmd);
}
......
......@@ -656,7 +656,8 @@ namespace VIZ.FGOUT.Module
/// <param name="key">服务键</param>
private void VideoSetting()
{
NDISettingView view = new NDISettingView(NDIViewKeys.CAM_1, "B0-25-AA-4E-C4-AE__CAM_1");
//NDISettingView view = new NDISettingView(NDIViewKeys.CAM_1, "B0-25-AA-4E-C4-AE__CAM_1");
NDISettingView view = new NDISettingView(NDIViewKeys.CAM_1, "3E-55-76-D0-9E-B9__CAM_1");
NoneWindow window = new NoneWindow(1200, 1050, view);
window.Owner = this.GetWindow();
window.ShowDialog();
......
......@@ -21,9 +21,7 @@
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/Button/Button_Setting.xaml" />
<ResourceDictionary Source="/VIZ.FGOUT.Module.Resource;component/Style/TextBox/TextBox_Setting.xaml" />
</ResourceDictionary.MergedDictionaries>
<resource:AlgorithmStrategyTagStringConverter x:Key="AlgorithmStrategyTagStringConverter" />
<x:Array x:Key="TrueOrFalse" Type="sys:String">
<sys:String>False</sys:String>
<sys:String>True</sys:String>
......
......@@ -3,7 +3,6 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Interop;
using VIZ.FGOUT.Connection;
using VIZ.FGOUT.Connection.UDP.Clip.Signal.Send;
using VIZ.FGOUT.Domain;
......@@ -207,7 +206,7 @@ namespace VIZ.FGOUT.Module
var number = this.ViewConfig.GameName;
if (!string.IsNullOrEmpty(number))
{
PresetsItem = dics[number];
_initItem = PresetsItem = dics[number];
var config = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindOne(p => p.Number == number);
//初始化UE预设数据
InitUEDetail(config.Data);
......@@ -216,6 +215,9 @@ namespace VIZ.FGOUT.Module
}
}
//页面初始化时进来的项目名称
string _initItem = string.Empty;
/// <summary>
/// 获取算法策略视图
/// </summary>
......@@ -261,10 +263,13 @@ namespace VIZ.FGOUT.Module
/// <returns>是否需要重启算法</returns>
public bool IsNeedRestart()
{
if (this.SelectedAlgorithmStrategy != this.oldAlgorithmStrategy)
return true;
//if (this.SelectedAlgorithmStrategy != this.oldAlgorithmStrategy)
// return true;
if (this.ViewConfig.GPU != this.oldGpu)
//if (this.ViewConfig.GPU != this.oldGpu)
// return true;
if (_initItem != (PresetsItem ?? string.Empty))
return true;
return false;
......@@ -505,6 +510,7 @@ namespace VIZ.FGOUT.Module
}
}
//要存库的算法数据
private string _algorithmMessage = "";
private void SendAlgorithmParameters()
{
......@@ -526,7 +532,10 @@ namespace VIZ.FGOUT.Module
package.Scale = AScale;
_algorithmMessage = package == null ? string.Empty : JsonConvert.SerializeObject(package, JSON_SERIALIZER_SETTINGS);
manager.SendJson(package);
if (_initItem == (PresetsItem ?? string.Empty))
manager.SendJson(package);
//MessageBoxEx.ShowDialog("发送成功 IP = " + manager.IP + " Port =" + manager.Port);
//MessageBoxEx.ShowDialog("发送成功");
......
......@@ -445,9 +445,7 @@ namespace VIZ.FGOUT.Module
INDIViewService service = ApplicationDomainEx.ServiceManager.GetService<INDIViewService>(this.ViewKey);
service.DisplayName = this.ViewConfig.DisplayName;
if (string.IsNullOrWhiteSpace(this.ViewConfig.StreamName))
{
service.ClearVideoControl(new ClearVideoControlContext(true, true));
}
return true;
}
......
......@@ -210,6 +210,7 @@ namespace VIZ.FGOUT.Module
private void Save()
{
bool isNeedRestart = false;
// 是否需要重启算法
foreach (INDISetting setting in this.Settings)
{
......@@ -220,6 +221,10 @@ namespace VIZ.FGOUT.Module
}
}
//如果是CAM_2,不需要重启算法进程
if (this.ViewKey.Equals(NDIViewKeys.CAM_2))
isNeedRestart = false;
if (isNeedRestart)
{
MessageBoxExResult result = MessageBoxEx.ShowDialog("提示", "该配置需要重启算法进程,是否继续保存?", MessageBoxExButtons.YES_CANCEL);
......@@ -255,7 +260,10 @@ namespace VIZ.FGOUT.Module
// 关闭窗口
this.GetWindow().Close();
//如果是CAM_2,不需要重启算法进程
if (this.ViewKey.Equals(NDIViewKeys.CAM_2))
return;
if (service == null) return;
ChangeStrategyContext context = new ChangeStrategyContext();
context.Mode = service.ViewConfig.StrategyMode;
......
......@@ -7,6 +7,7 @@ using VIZ.FGOUT.Domain;
using VIZ.FGOUT.Storage;
using VIZ.Framework.Common;
using VIZ.Framework.Connection;
using VIZ.Framework.Domain;
namespace VIZ.FGOUT.Module
{
......@@ -69,9 +70,14 @@ namespace VIZ.FGOUT.Module
this.Support.ViewStatus= NDIViewStatus.Detect;
UdpEndpointManager manager = ConnectionManager.UdpConnection.GetEndpointManager(NDIViewKeys.CAM_1);
AlgorithmSenderOption option = new AlgorithmSenderOption();
option.id = this.Support.ID;
AlgorithmSender.AutoMode(manager,this.bulidPackage(AlgorithmAutoModeCmd.detect,null),option);
//AlgorithmSenderOption option = new AlgorithmSenderOption();
//option.id = this.Support.ID;
//AlgorithmSender.AutoMode(manager, this.bulidPackage(AlgorithmAutoModeCmd.detect, null), option);
var ndiViewConfig =
ApplicationDomainEx.LiteDbContext.ViewConfig.FindOne(p => p.ViewKey == NDIViewKeys.CAM_1);
var config = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindOne(p => p.Number == ndiViewConfig.GameName);
AlgorithmSender.AutoMode(manager, config.AlgorithmData);
}
/// <summary>
......@@ -185,22 +191,16 @@ namespace VIZ.FGOUT.Module
return package;
}
public AlgorithmPackage_Figout_model bulidPackage(string cmd, TrackingBoxInfo box)
{
AlgorithmPackage_Figout_model package = new AlgorithmPackage_Figout_model();
package.mode = "manual";
package.signal = AlgorithmPackageSignal.detect;
//package.track_xy = box == null ? null : new List<int> { (int)box.SrcRect.Left, (int)box.SrcRect.Top, (int)box.SrcRect.Right, (int)box.SrcRect.Bottom };
//package.track_xy = box == null ? null : new List<int> { (int)box.X, (int)box.Y };
return package;
}
public AlgorithmPackage_Figout_model bulidPackage(string cmd, Point box)
{
AlgorithmPackage_Figout_model package = new AlgorithmPackage_Figout_model();
......
......@@ -75,9 +75,8 @@ namespace VIZ.FGOUT.Module
private void InitAlgorithm()
{
if(this.ViewKey!= NDIViewKeys.CAM_1)
{
return;
}
ChangeStrategyContext context = new ChangeStrategyContext();
context.IsUseClip = this.IsUseClip;
context.Mode = AlgorithmStrategyMode.auto_mode;
......@@ -166,7 +165,8 @@ namespace VIZ.FGOUT.Module
//this.UpdateModeProperty();
// 重启算法
this.AlgorithmControllerDic[this.StrategyType].RestartAlgorithm();
if (this.ViewKey == NDIViewKeys.CAM_1)
this.AlgorithmControllerDic[this.StrategyType].RestartAlgorithm();
}
/// <summary>
......
......@@ -100,6 +100,7 @@ namespace VIZ.FGOUT.Module
//this.AlgorithmControllerDic.Add(AlgorithmStrategyType.Single, new AlgorithmController_Single(this));
// 时间切片算法进行
//if (this.ViewKey == NDIViewKeys.CAM_1)
this.AlgorithmControllerDic.Add(AlgorithmStrategyType.FigureOut,new AlgoritmController_FiguerOut(this));
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "01DD8B687722CEA3505A0F5237DB88FC7344409E9D6935DC6D7FAFB0437FEE0B"
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D03643DE19E9EB1EC7F52D7E66343089DBF18A77EDA790A6DBB57F26125672EB"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -48,7 +48,7 @@ namespace VIZ.FGOUT.Module {
public partial class AlgorithmSettingPanelView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 124 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 122 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Sports_;
......@@ -56,7 +56,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 279 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 277 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases1_;
......@@ -64,7 +64,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 290 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 288 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases2_;
......@@ -72,7 +72,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 313 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 311 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton EnableSpline;
......@@ -80,7 +80,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 433 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 431 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyX;
......@@ -88,7 +88,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 456 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 454 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyY;
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "01DD8B687722CEA3505A0F5237DB88FC7344409E9D6935DC6D7FAFB0437FEE0B"
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D03643DE19E9EB1EC7F52D7E66343089DBF18A77EDA790A6DBB57F26125672EB"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......@@ -48,7 +48,7 @@ namespace VIZ.FGOUT.Module {
public partial class AlgorithmSettingPanelView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
#line 124 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 122 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Sports_;
......@@ -56,7 +56,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 279 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 277 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases1_;
......@@ -64,7 +64,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 290 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 288 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.ComboBox _Eases2_;
......@@ -72,7 +72,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 313 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 311 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton EnableSpline;
......@@ -80,7 +80,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 433 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 431 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyX;
......@@ -88,7 +88,7 @@ namespace VIZ.FGOUT.Module {
#line hidden
#line 456 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
#line 454 "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Primitives.ToggleButton MovementOnlyY;
......
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
22-808211288
4-699044453
90-747441034
151674092382
22-1559853185
4-1529606353
90-1236168610
151915249285
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;
False
True

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;;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -5,4 +5,4 @@ ID,IsEnabled,Group,Type,Name,DisplayName,MainPath
4,TRUE,足球,Tactics,战术机位,战术机位,C:\projects\tactical_v1.0.0.0\main_tactical.exe
5,TRUE,羽毛球,Single,测试2,测试2,C:\projects\person_v2.0.0.0\person_v2.0.0.0.exe
6,TRUE,羽毛球,Single,测试2,测试3,C:\projects\main_person_track\main_person_track.exe
7,TRUE,羽毛球,FigureOut,测试1,测试1,C:\projects\org\person_v1.1.0.0\main_person_new22.py
\ No newline at end of file
7,TRUE,羽毛球,FigureOut,测试2,测试2,D:\zhangming\figout_deploy\main_TimePlus_class.py
\ No newline at end of file
......@@ -5,4 +5,4 @@ ID,IsEnabled,Group,Type,Name,DisplayName,MainPath
4,TRUE,足球,Tactics,战术机位,战术机位,C:\projects\tactical_v1.0.0.0\main_tactical.exe
5,TRUE,羽毛球,Single,测试2,测试2,C:\projects\person_v2.0.0.0\person_v2.0.0.0.exe
6,TRUE,羽毛球,Single,测试2,测试3,C:\projects\main_person_track\main_person_track.exe
7,TRUE,羽毛球,FigureOut,测试1,测试1,C:\projects\org\person_v1.1.0.0\main_person_new22.py
\ No newline at end of file
7,TRUE,羽毛球,FigureOut,测试2,测试2,D:\zhangming\figout_deploy\main_TimePlus_class.py
\ No newline at end of file
......@@ -10,11 +10,11 @@ none
false
DEBUG;TRACE
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT\App.xaml
2-1347366880
21265083526
6968741766
43-1958993781
6-790135758
421356718200
CloseAlgorithmWindow.xaml;MainWindow.xaml;
False
True
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