|
|
@@ -769,7 +769,7 @@ public class InfraredScreenPositioningView : JCUnityLib.ViewBase
|
|
|
//屏幕变化情况下。同步修改对应的line
|
|
|
//设置两个线段
|
|
|
QuadrilateralInCamera screenAuto = ScreenLocate.Main.ScreenIdentification.QuadAuto;
|
|
|
- QuadrilateralInCamera screenSemiAuto = ScreenLocate.Main.ScreenIdentification.QuadSemiAuto;
|
|
|
+ QuadrilateralInCamera screenQuadManual = ScreenLocate.Main.ScreenIdentification.QuadManual; //QuadSemiAuto;
|
|
|
if (screenAuto != null)
|
|
|
{
|
|
|
Debug.Log("[校准流程]Successful自动识别screenAuto信息 ------------ ");
|
|
|
@@ -780,10 +780,10 @@ public class InfraredScreenPositioningView : JCUnityLib.ViewBase
|
|
|
//{
|
|
|
// Debug.LogError("screenAuto 不存在!");
|
|
|
//}
|
|
|
- if (screenSemiAuto != null)
|
|
|
+ if (screenQuadManual != null)
|
|
|
{
|
|
|
- Debug.Log("[校准流程]Successful半自动识别screenSemiAuto信息 ------------ ");
|
|
|
- SecondUILineGenerator.Points = infraredDemo.ConvertQuadToPoints(screenSemiAuto, texSize);
|
|
|
+ Debug.Log("[校准流程]Successful手动识别screenQuadManual信息 ------------ ");
|
|
|
+ SecondUILineGenerator.Points = infraredDemo.ConvertQuadToPoints(screenQuadManual, texSize);
|
|
|
}
|
|
|
//else
|
|
|
//{
|
|
|
@@ -1427,10 +1427,10 @@ public class InfraredScreenPositioningView : JCUnityLib.ViewBase
|
|
|
onCompelete();
|
|
|
}
|
|
|
|
|
|
- //选择半自动结果
|
|
|
+ //选择半自动结果,临时改用手动
|
|
|
void OnSecondResult()
|
|
|
{
|
|
|
- ScreenLocate.Main.SelectScreenAfterLocate(ScreenLocate.ScreenIdentificationTag.SemiAuto);
|
|
|
+ ScreenLocate.Main.SelectScreenAfterLocate(ScreenLocate.ScreenIdentificationTag.Manual);//SemiAuto
|
|
|
UpdateQuadUnityVectorList();
|
|
|
|
|
|
onCompelete();
|