Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
E
evsuits
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
OpsTeam
evsuits
Commits
a4d7fbc1
提交
a4d7fbc1
authored
8月 14, 2019
作者:
blu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
init
上级
3755ad42
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
65 行增加
和
3 行删除
+65
-3
Makefile
opencv-motion-detect/Makefile
+9
-3
evmlmotion.cpp
opencv-motion-detect/evmlmotion.cpp
+28
-0
evslicer.cpp
opencv-motion-detect/evslicer.cpp
+28
-0
没有找到文件。
opencv-motion-detect/Makefile
浏览文件 @
a4d7fbc1
...
...
@@ -10,7 +10,7 @@ SQLITE=vendor/sqlite/sqlite3.c
HEADERS
=
-Iinc
.PHONY
:
libzmq
all
:
evmgr evpuller evpusher
all
:
evmgr evpuller evpusher
evslicer evmlmotion
.PHONY
:
libzmq
libzmq
:
...
...
@@ -30,6 +30,12 @@ evpuller: evpuller.cpp database.cpp inc/common.hpp inc/tinythread.hpp sqlite3.o
evpusher
:
evpusher.cpp inc/common.hpp inc/tinythread.hpp database.cpp sqlite3.o
$(CPP)
$(CPPFLAGS)
-o
evpusher evpusher.cpp database.cpp sqlite3.o
$(LIBFFMPEG)
$(HEADERS)
`
pkg-config
--cflags
--libs
vendor/lib/pkgconfig/libzmq.pc
`
$(LIBS)
evslicer
:
evslicer.cpp inc/common.hpp inc/tinythread.hpp database.cpp sqlite3.o
$(CPP)
$(CPPFLAGS)
-o
evslicer evslicer.cpp database.cpp sqlite3.o
$(LIBFFMPEG)
$(HEADERS)
`
pkg-config
--cflags
--libs
vendor/lib/pkgconfig/libzmq.pc
`
$(LIBS)
evmlmotion
:
evmlmotion.cpp inc/common.hpp inc/tinythread.hpp database.cpp sqlite3.o
$(CPP)
$(CPPFLAGS)
-o
evmlmotion evmlmotion.cpp database.cpp sqlite3.o
$(LIBFFMPEG)
$(HEADERS)
`
pkg-config
--cflags
--libs
vendor/lib/pkgconfig/libzmq.pc
`
$(LIBS)
rtspr
:
rtsp-relay.cpp
$(CPP)
$(CPPFLAGS)
-o
rtspr rtsp-relay.cpp
$(LIBFFMPEG)
$(LIBS)
...
...
@@ -41,4 +47,4 @@ mux: demuxing_decoding.c
.PHONY
:
clean
clean
:
rm
-fr
evmgr evpuller evpusher
*
.dSYM
*
.out
*
.o
\ No newline at end of file
rm
-fr
evmgr evpuller evpusher evslicer evmlmotion
*
.dSYM
*
.out
*
.o
\ No newline at end of file
opencv-motion-detect/evmlmotion.cpp
0 → 100644
浏览文件 @
a4d7fbc1
#pragma GCC diagnostic ignored "-Wunused-private-field"
#pragma GCC diagnostic ignored "-Wunused-variable"
#include <stdlib.h>
#include <string>
#include <thread>
#include <iostream>
#include <chrono>
#include <future>
#ifdef OS_LINUX
#include <filesystem>
namespace
fs
=
std
::
filesystem
;
#endif
#include "vendor/include/zmq.h"
#include "tinythread.hpp"
#include "common.hpp"
#include "database.h"
using
namespace
std
;
int
main
(
int
argc
,
const
char
*
argv
[]){
return
0
;
}
\ No newline at end of file
opencv-motion-detect/evslicer.cpp
0 → 100644
浏览文件 @
a4d7fbc1
#pragma GCC diagnostic ignored "-Wunused-private-field"
#pragma GCC diagnostic ignored "-Wunused-variable"
#include <stdlib.h>
#include <string>
#include <thread>
#include <iostream>
#include <chrono>
#include <future>
#ifdef OS_LINUX
#include <filesystem>
namespace
fs
=
std
::
filesystem
;
#endif
#include "vendor/include/zmq.h"
#include "tinythread.hpp"
#include "common.hpp"
#include "database.h"
using
namespace
std
;
int
main
(
int
argc
,
const
char
*
argv
[]){
return
0
;
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论