LEADTOOLS Recognition Imaging SDK是精選的LEADTOOLS SDK功能集,旨在在企業級文檔自動化解決方案中構建端到端文檔成像應用程序,這些解決方案須要OCR,MICR,OMR,條形碼,表單識別和處理,PDF,打印捕獲 ,檔案,註釋和圖像查看功能。 這套功能強大的工具利用LEAD屢獲殊榮的圖像處理技術,智能識別可用於識別和提取任何類型的掃描或傳真形式圖像數據的文檔功能。程序員
下載LEADTOOLS Recognition Imaging SDK試用版慧都網網絡
LEADTOOLS 視頻捕獲SDK包含高級功能,可簡化從設備和攝像機捕獲視頻的過程。咱們的SDK爲開發人員提供了與不一樣的視頻源配合使用所需的全部工具,包括網絡攝像機,網絡攝像頭,採集卡,電視調諧器,DV攝像機等。捕獲視頻後,開發人員能夠使用各類編解碼器( 例如H.265,H.264,MJPEG和MPEG-2)輕鬆轉換和存儲視頻 。LEAD庫提供了市場上任何其餘多媒體SDK最高的壓縮,速度和播放質量。ide
正在將視頻捕獲集成到您的應用程序中?快速從下面的代碼開始,或查看 完整的教程,從視頻源捕獲到文件。工具
using System.Windows.Forms;
using Leadtools;
using Leadtools.Multimedia;測試
static void Main(string[] args)
{
UnlockMultimedia();
CaptureVideo();
}網站
static void CaptureVideo()
{
string outputFile = @"C:\LEADTOOLS21\Resources\Images\captured.avi";
CaptureCtrl capture = new CaptureCtrl(true);
int deviceCount = capture.VideoDevices.Count;
if (deviceCount < 1)
{
Console.WriteLine("No compatible devices found. Exiting.");
return;
}
Console.WriteLine("Select device by typing its number and pressing Enter:");
for (int n = 0; n < deviceCount; n++)
Console.WriteLine(n.ToString() + " : " + capture.VideoDevices[n].FriendlyName);
int deviceIndex = int.Parse(Console.ReadLine());
Console.WriteLine("Preparing to capture . .");
capture.VideoDevices.Selection = deviceIndex;
capture.TargetFile = outputFile;
capture.TargetFormat = TargetFormatType.AVI;
// select a suitable compressor
capture.VideoCompressors.MJpeg.Selected = true;
//use CaptureMode.VideoAndAudio if an audio device is also selected.
capture.StartCapture(CaptureMode.Video);
Console.WriteLine("Capturing to file. Press any key to stop capture...");
while (!Console.KeyAvailable)
{
System.Windows.Forms.Application.DoEvents();
int capMilliSeconds = (int)(1000 * capture.CaptureTime);
if (capMilliSeconds % 1000 == 0) // print a dot every second
{
Console.Write(". ");
System.Threading.Thread.Sleep(1);
}
}
capture.StopCapture();
Console.ReadKey(true);
Console.WriteLine($"\nFinished capturing {capture.CaptureTime} seconds to file {outputFile}. Press any key to continue...");
Console.ReadKey(true);
}
試試看!
要本身進行測試,請確保從咱們的網站上免費得到最新的LEADTOOLS SDK評估(若是尚未的話)。該試用版有效期爲60天,並提供無限制的聊天和電子郵件支持。ui
支持orm
須要幫助來獲取此樣本嗎?請聯繫咱們的支持團隊以獲取免費技術支持!有關價格或許可問題,您能夠聯繫咱們的銷售團隊。視頻
請繼續關注,由於正如咱們以前的帖子中所承諾的那樣,咱們將提供更多教程,程序員能夠使用它們來開發直接影響數據捕獲、識別、交換和其餘緊迫業務需求的應用程序。教程