CIOFrameGrab.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*****************************************************************************
  2. * CIOFrameGrab.h
  3. *****************************************************************************
  4. *
  5. * Project: HALCON/libhalcon
  6. * Description: Image acquisition integration interface
  7. *
  8. * (c) 1996-2020 by MVTec Software GmbH
  9. * www.mvtec.com
  10. *
  11. *****************************************************************************
  12. *
  13. *
  14. *****************************************************************************
  15. *
  16. * See also: "Image Acquisition Integration Programmer's Manual"
  17. *
  18. *****************************************************************************
  19. */
  20. #ifndef CIOFRAMEGRAB_H
  21. #define CIOFRAMEGRAB_H
  22. #ifndef HC_NO_FRAMEGRABBER
  23. # include "CIOFrameGrabDefines.h"
  24. # if defined(__cplusplus)
  25. extern "C" {
  26. # endif
  27. /* function for integrating image acquisition devices into the system using
  28. a linked interface (instead of a dynamic object accessed online) */
  29. extern HLibExport Herror HAddFgClass(Hproc_handle proc_id, char* name,
  30. FG_INIT_FUNC init_func);
  31. /* function for writing the interface specific default values into an
  32. Hcpar array */
  33. extern HLibExport Herror HFgGetDefaults(Hproc_handle proc_id, FGClass* fgClass,
  34. Hcpar** values, HINT* numValues);
  35. # if defined(__cplusplus)
  36. }
  37. # endif
  38. #endif /* ifndef HC_NO_FRAMEGRABBER */
  39. #endif /* ifndef CIOFRAMEGRAB_H */