110,017
社区成员




LPRENGINE_API LPRRESULT __stdcall InitLPREngineParamHelper( LPREngineParam* pParam, int maxPlate, int minPlateW, int maxPlateW,
int chnRegion, LPRRatioRect recogRegion, int speed, bool bCapture, bool bAdaptiveFP, bool bEnableLowConfid );
struct LPREngineParam
{
int size;
LPRParam lprParam;
LPRRatioRect recogRegion;
LPRRatioLine line1;
LPRRatioLine line2;
int maxSkip;
float minValid;
float minConfid;
int framePercent;
bool bAdaptiveFP;
int motionDetectionMode;
bool bCapture;
int minCaptureDiff;
LPRRatioRect preferCapRegion;
};
public struct LPREngineParam
{
public int size;
public LPRParam lprPrarm;
public LPRRatioRect recogRegion;
public LPRRatioLine line1;
public LPRRatioLine line2;
public int maxSkip;
public float minValid;
public float minConfid;
public int framePercent;
public bool bAdapticeFP;
public int motionDetectionMode;
public bool bCapture;
public int minCaptureDiff;
public LPRRatioRect preferCapRegion;
}
[DllImport("LPREngine.dll", CharSet = CharSet.Auto)]
public static extern long InitLPREngineParamHelper(LPREngineParam pParam,
int maxplate, int minPlateW, int maxPlateW, int chnRegion, LPRRatioRect recogRegion,
int speed, bool bCapture, bool bAdaptiveFP, bool bEnableLowConfid);
public struct LPREngineParam
{
public int size;
public LPRParam lprPrarm; // a pointer or a struct?
public LPRRatioRect recogRegion; // a pointer or a struct?
public LPRRatioLine line1;
public LPRRatioLine line2;
public int maxSkip;
public float minValid;
public float minConfid;
public int framePercent;
public bool bAdapticeFP;
public int motionDetectionMode;
public bool bCapture;
public int minCaptureDiff;
public LPRRatioRect preferCapRegion;
}