Method GetRecognitionDetail<T>
- Namespace
- MaaFramework.Binding
- Assembly
- MaaFramework.Binding.Native.dll
GetRecognitionDetail<T>(long, out string, out string, out bool, IMaaRectBuffer?, out string, IMaaImageBuffer?, IMaaListBuffer<T>?)
Gets the recognition detail.
public bool GetRecognitionDetail<T>(long recognitionId, out string nodeName, out string algorithm, out bool hit, IMaaRectBuffer? hitBox, out string detailJson, IMaaImageBuffer? raw, IMaaListBuffer<T>? draws) where T : IMaaImageBufferParameters
recognitionIdlong-
The recognition id.
nodeNamestring-
The node name.
algorithmstring-
The algorithm name of the recognition.
hitbool-
A value indicating whether the recognition hits.
hitBoxIMaaRectBuffer?-
The hit box.
detailJsonstring-
The recognition detail.
rawIMaaImageBuffer?-
The raw image on the recognition completing.
Only valid in debug mode.
drawsIMaaListBuffer<T>?-
The draw images on the recognition completed.
Only valid in debug mode.
Returns
Type Parameters
T
GetRecognitionDetail(long, out string, out string, out bool, MaaRectBuffer?, out string, MaaImageBuffer?, MaaImageListBuffer?)
public bool GetRecognitionDetail(long recognitionId, out string nodeName, out string algorithm, out bool hit, MaaRectBuffer? hitBox, out string detailJson, MaaImageBuffer? raw, MaaImageListBuffer? draws)Parameters
recognitionIdlongnodeNamestringalgorithmstringhitboolhitBoxMaaRectBuffer?detailJsonstringrawMaaImageBuffer?drawsMaaImageListBuffer?
Returns
Remarks
Wrapper of MaaFramework.Binding.Interop.Native.MaaTasker.MaaTaskerGetRecognitionDetail(System.IntPtr,System.Int64,System.IntPtr,System.IntPtr,System.Boolean@,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr).