⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orchidconst.pas

📁 相机传输图像程序源代码 拜耳模式(RAW格式文件)与RGB图像数据互相转换函数库
💻 PAS
字号:
// LEUTRON VISION ORCHID - this file contains constants not included in the type library of Orchid ActiveX

unit OrchidConst;

interface

const

  lvx_AviFrame_RealTimeStamp         =  1;

  lvx_TiffConvertMonoTo16bit         =  1;

  lvx_GrabNotify_WinMsg              =  1;
  lvx_GrabNotify_WinObject           =  2;
  lvx_GrabNotify_Function            =  3;

  lvx_TimeoutNotify_WinMsg           = 10;
  lvx_TimeoutNotify_WinObject        = 11;
  lvx_TimeoutNotify_Function         = 12;

  lvx_Status_EepromOemNotInitialized = 65537;
  lvx_Status_EepromGrabberNotActive  = 65538;
  lvx_Status_EepromHwError           = 65539;
  lvx_Status_EepromUnknownError      = 65540;
  lvx_Status_EepromDoesNotMatch      = 65541;

  lvx_TextAttr_Bold                  = $0001; // for lvx_SetOverlayTextParams
  lvx_TextAttr_Italic                = $0002;
  lvx_TextAttr_Underline             = $0004;
  lvx_TextAttr_StrikeOut             = $0008;
  lvx_TextAttr_Shadow                = $0100; // default shadow is right-bottom
  lvx_TextAttr_Outline               = $FF00;

  lvx_TextAttr_ShadowRB              = $0100; // right-bottom
  lvx_TextAttr_ShadowRT              = $0200; // right-top
  lvx_TextAttr_ShadowLB              = $0400; // left-bottom
  lvx_TextAttr_ShadowLT              = $0800; // left-top
  lvx_TextAttr_ShadowB               = $1000; // bottom
  lvx_TextAttr_ShadowT               = $2000; // top
  lvx_TextAttr_ShadowR               = $4000; // right
  lvx_TextAttr_ShadowL               = $8000; // left

  lvx_Color_None                     = $FFFFFFFF; // for disabling transparent color
  lvx_Color_Black                    = $00000000;
  lvx_Color_Maroon                   = $00000080;
  lvx_Color_Green                    = $00008000;
  lvx_Color_Olive                    = $00008080;
  lvx_Color_Navy                     = $00800000;
  lvx_Color_Purple                   = $00800080;
  lvx_Color_Teal                     = $00808000;
  lvx_Color_Gray                     = $00808080;
  lvx_Color_Silver                   = $00C0C0C0;
  lvx_Color_Red                      = $000000FF;
  lvx_Color_Lime                     = $0000FF00;
  lvx_Color_Yellow                   = $0000FFFF;
  lvx_Color_Blue                     = $00FF0000;
  lvx_Color_Fuchsia                  = $00FF00FF;
  lvx_Color_Aqua                     = $00FFFF00;
  lvx_Color_LtGray                   = $00C0C0C0;
  lvx_Color_DkGray                   = $00808080;
  lvx_Color_White                    = $00FFFFFF;

  lvx_CameraGain_Analog         = $00000001;
  lvx_CameraGain_Digital        = $00000002;

  lvx_Cmd_GetAcquiredInfoWidth  = $00010001;
  lvx_Cmd_GetAcquiredInfoHeight = $00010002;
  lvx_Cmd_GetAcquiredInfoFlags  = $00010003;

  lvx_Cmd_SetLutMono8Bit        = $00020001;
  lvx_Cmd_SetLutMono10Bit       = $00020002;
  lvx_Cmd_SetLutMono12Bit       = $00020003;
  lvx_Cmd_SetLutRgb8Bit         = $00020004;

  lvx_Cmd_GetLutMono8Bit        = $00020011;
  lvx_Cmd_GetLutMono10Bit       = $00020012;
  lvx_Cmd_GetLutMono12Bit       = $00020013;
  lvx_Cmd_GetLutRgb8Bit         = $00020014;

  lvx_Cmd_IsCameraConnected     = $00030001;

  lvx_Cmd_UtilSetFrameTimeLog   = $01000001;
  lvx_Cmd_UtilGetFrameTime      = $01000002;

  lvx_Cmd_GetPixelValue         = $00040001;

implementation


end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -