资源简介
iSpy是国外的一款开源免费的视频监控,功能强大。支持电脑客户端,web端,手机端本地或者远程访问。
主要核心功能:
1.把摄像头通过代码嵌入到你自己的网站;
2.支持不同品牌摄像头,电脑usb摄像头,通过onvif协议,http,rtsp等方式添加摄像头;
3.实时监看,录像回放,电视墙功能;
4.支持云存储,ftp上传,上传录像到YouTube, Dropbox以及Google Drive等;
5.各种不同的录像方式,定时,手动,报警录像等;
6.支持Email, SMS等;
7.支持插件扩展,车牌识别(ALPR),人脸探测(Face Detection)等;
8.提供api,支持二次开发。
9.支持多语言(中文翻译的有点差)。
iSpy :http://www.ispyconnect.com/
代码片段和文件信息
using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace iSpyApplication
{
///
/// Summary description for AboutForm.
///
public class AboutForm : Form
{
private Label _lblCopyright;
private PictureBox _pictureBox1;
private Label _lblVersion;
private Button _btnOk;
private linkLabel linkLabel1;
private TableLayoutPanel tableLayoutPanel1;
///
/// Required designer variable.
///
private Container components = null;
public AboutForm( )
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
RenderResources();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
private void RenderResources()
{
_lblVersion.Text = string.Format(“{0}{1} v{2}“
Application.ProductName Program.Platform != “x86“ ? “ 64“ : ““
Application.ProductVersion);
Helper.Settitle(this);
_lblCopyright.Text = “Copyright \u00a9 2007-“ + Helper.Now.Year+“ DeveloperInABox“;
}
///
/// Clean up any resources being used.
///
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this._lblCopyright = new System.Windows.Forms.Label();
this._pictureBox1 = new System.Windows.Forms.PictureBox();
this.linkLabel1 = new System.Windows.Forms.linkLabel();
this._btnOk = new System.Windows.Forms.Button();
this._lblVersion = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this._pictureBox1)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// _lblCopyright
//
this._lblCopyright.Dock = System.Windows.Forms.Dockstyle.Fill;
this._lblCopyright.Location = new System.Drawing.Point(174 25);
this._lblCopyright.Name = “_lblCopyright“;
this._lblCopyright.Size = new System.Drawing.Size(249 25);
this._lblCopyright.TabIndex = 13;
this._lblCopyright.Text = “Copyright ?2016 DeveloperInABox“;
this._lblCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// _pictureBox1
//
this._pictureBox1.Image = global::iSpyApplication.Properties.Resources.ispy;
this._pictureBox1.Location
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-05 06:38 iSpy-master\
文件 691 2018-09-05 06:38 iSpy-master\.gitignore
文件 74 2018-09-05 06:38 iSpy-master\.gitignore.bak
目录 0 2018-09-05 06:38 iSpy-master\.nuget\
文件 164 2018-09-05 06:38 iSpy-master\.nuget\NuGet.Config
文件 8438 2018-09-05 06:38 iSpy-master\AboutForm.cs
文件 5695 2018-09-05 06:38 iSpy-master\AboutForm.resx
文件 261032 2018-09-05 06:38 iSpy-master\AddCamera.Designer.cs
文件 101930 2018-09-05 06:38 iSpy-master\AddCamera.cs
文件 49156 2018-09-05 06:38 iSpy-master\AddCamera.resx
文件 12121 2018-09-05 06:38 iSpy-master\AddFloorPlan.Designer.cs
文件 17907 2018-09-05 06:38 iSpy-master\AddFloorPlan.cs
文件 75291 2018-09-05 06:38 iSpy-master\AddFloorPlan.resx
文件 78266 2018-09-05 06:38 iSpy-master\AddMicrophone.Designer.cs
文件 31723 2018-09-05 06:38 iSpy-master\AddMicrophone.cs
文件 49364 2018-09-05 06:38 iSpy-master\AddMicrophone.resx
文件 10157 2018-09-05 06:38 iSpy-master\AddRemoteCommand.Designer.cs
文件 3837 2018-09-05 06:38 iSpy-master\AddRemoteCommand.cs
文件 5698 2018-09-05 06:38 iSpy-master\AddRemoteCommand.resx
文件 7305 2018-09-05 06:38 iSpy-master\App.config
文件 26694 2018-09-05 06:38 iSpy-master\App.ico
文件 2445 2018-09-05 06:38 iSpy-master\AssemblyInfo.cs
文件 3770 2018-09-05 06:38 iSpy-master\ByteArrayUtils.cs
文件 3092 2018-09-05 06:38 iSpy-master\C2BPComparers.cs
文件 20525 2018-09-05 06:38 iSpy-master\C2BPProcessor.cs
目录 0 2018-09-05 06:38 iSpy-master\CameraDiscovery\
文件 5553 2018-09-05 06:38 iSpy-master\CameraDiscovery\CameraScanner.cs
文件 8133 2018-09-05 06:38 iSpy-master\CameraDiscovery\URLDiscovery.cs
文件 5073 2018-09-05 06:38 iSpy-master\CameraMicSource.Designer.cs
文件 3689 2018-09-05 06:38 iSpy-master\CameraMicSource.cs
文件 5698 2018-09-05 06:38 iSpy-master\CameraMicSource.resx
............此处省略1031个文件信息
- 上一篇:Excel图表实战技巧精粹
- 下一篇:微信小程序源码-合集5.rar
相关资源
- 《设计模式》刘伟第一版&&第二版
- 基于面向对象方法学的银行储蓄系统
- 哈工大威海编译原理实验报告和源代
- 银行信用卡管理系统源代码
- FFmpeg获取网络摄像头数据解码
- 基于opencv的数人头程序源代码
- 基于单幅图像的快速去雾源码实现
- QT旅游攻略软件程序源代码
- 简易手机通讯录
- MicroSIP 增加 g729 源代码
- 巴巴运动网完整源代码
- 40款经典黑客编程源代码.rar
- iOS Programming The Big Nerd Ranch Guide 第6版
- 38套精选前端门户网站模板
-
Flash+Actionsc
ript+3.0+高级动画教程中文 - eshop毕业论文加源代码
- 招干考试管理系统*源代码
- 设计模式课后习题源代码
- VC编写的ICMP木马源代码
- 速算纸牌24点小游戏
- 东北大学软件学院编译方法两次实验
- IDCardOCR_China 基于tesseract,实现摄像头
- 二进制炸弹完整解决过程+源代码
- 六子冲棋博弈程序设计教程原创源代
- VC仿炫酷的黑客帝国屏保源代码
- 图像处理及源码-5个可以使用包含源代
- lisp源代码 ***工具箱代码 cad二次开发
- Ieee 1588 源代码
- 树莓派运用CV摄像头、视觉巡线.zip
- 一个最简单的二代身份证阅读器通用
评论
共有 条评论