ProcUnit::ThroughProc
Performs image input/generation processing for the through-image display
Parameters
None.
Return Value
Returns 0 when the image input/generation for the through-image display succeeded.
Otherwise returns a non-zero value.
Description
Performs the image input/generation processing for the through-image display of a processing item.
Example
int Sample::TroughProc(ProcUnit *ptrProcUnit)
{
// Get the pointer to the inner processing unit
ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);
// Perform the processing before entering the image input trigger of an inner processing unit
ptrInnerUnit->TroughProc();
}