123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeasureThread
- {
- interface IFocus
- {
- bool DoFocusBySetMainParameter();
- bool DoFocusByNewMagnification(float newMag);
- void setFocusParam(Focusparam param);
- }
- public class Focusparam
- {
-
- public float mag;
- public float workingDis;
- public Point reduceWindowPos;
- public double reduceWinWidth;
- public double reduceWinHeight;
- public bool IfAutoBrightnessAndContrast;
- public float brightness;
- public float contrast;
-
-
- public float tiltCorrAngle;
- public bool ifStig=false;
- }
- }
|