Skip to content

Commit

Permalink
modify readme
Browse files Browse the repository at this point in the history
  • Loading branch information
DLX4 committed May 24, 2020
1 parent f7d21b2 commit 8a30cb7
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 23 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,14 @@

**fusion-vivado**:windows环境下的vivado工程

**fusion-hls**:windows环境下vivado hls工程

**fusion-hls\src_xf**:windows环境下vivado hls工程(基于xfopencv),包含项目用到的各种fpga核

**fusion-linux**:linux环境下的工程目录(包含应用的前后端工程,因为他们都要在linux环境发布)

**fusion-linux\java-fusion**:基于springboot的java服务端web项目

**fusion-linux\vue-fusion**:基于vue的前端页面

**fusion-linux\vue-fusion-video**:基于vue的前端页面(模拟了视频效果)

**fusion-linux\zynq-fusion**:在开发板linux系统环境运行的应用

**fusion-linux\zynq-fusion\qt-fusion**:跨平台的opencv + QT算法实现(基于zynq 7020平台),整合fpga加速
Expand Down
8 changes: 8 additions & 0 deletions docs/notebook.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@








43 changes: 24 additions & 19 deletions fusion/fusion-linux/vue-fusion-video/fusion-app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<a-col :span="8">
<div class="content">

<a-divider>融合模式</a-divider>
<a-divider style="font-size: 20px;">融合模式</a-divider>

<div class="params-mode">
<div class="middle">
Expand All @@ -68,7 +68,7 @@
</div>
</div>

<a-divider>融合参数</a-divider>
<a-divider style="font-size: 20px;">融合参数</a-divider>

<div class="params">

Expand Down Expand Up @@ -152,42 +152,42 @@
</div>


<a-divider>实时状态</a-divider>
<a-divider style="font-size: 20px;">实时状态</a-divider>
<div class="status">
<div class="middle">

<div class="params-row">
<div class="params-label ">
<label>FPS:</label>
<label>平均帧延时:</label>
</div>
<div class="params-value ">
<label>{{status.fps}}帧/秒</label>
<label>{{status.delay}}ms</label>
</div>
</div>

<!--<div class="params-row">-->
<!--<div class="params-label ">-->
<!--<label>平均时延:</label>-->
<!--</div>-->
<!--<div class="params-value ">-->
<!--<label>{{status.delay}}毫秒</label>-->
<!--</div>-->
<!--<div class="params-label ">-->
<!--<label>平均时延:</label>-->
<!--</div>-->
<!--<div class="params-value ">-->
<!--<label>{{status.delay}}毫秒</label>-->
<!--</div>-->
<!--</div>-->
</div>
</div>

<a-divider>控制按钮</a-divider>
<a-divider style="font-size: 20px;">控制按钮</a-divider>

<div class="control-button">
<div class="middle">
<a-row>
<a-col :span="12">
<a-button type="primary" :loading="fusionLoading" @click="doFusion">开始采集
<a-button type="primary" :loading="fusionLoading" @click="doFusion" style="font-size: 20px;">开始采集
</a-button>
</a-col>

<a-col :span="12">
<a-button @click="$message.success('Processing complete!')">停止</a-button>
<a-button @click="$message.success('Processing complete!')" style="font-size: 20px;">停止</a-button>
</a-col>
</a-row>
</div>
Expand Down Expand Up @@ -269,8 +269,8 @@
mode: 'a'
},
status: {
fps:1,
delay:889
fps: 1,
delay: 889
},
socket: null,
stompClient: null
Expand All @@ -285,9 +285,9 @@
// that.socket = new SockJS("ws://localhost:8088/zhcx-export-websocket");
that.stompClient = Stomp.over(that.socket);
that.stompClient.connect({}, function() {
that.stompClient.connect({}, function () {
console.log("连接成功");
that.stompClient.subscribe("/topic/zhcx", function(res) {
that.stompClient.subscribe("/topic/zhcx", function (res) {
let response = JSON.parse(res.body);
console.log(response);
that.fusion.imageUrlA = "http://localhost:8088/show?fileName=" + response.imageA;
Expand Down Expand Up @@ -355,6 +355,11 @@
</script>

<style scoped>
label {
font-size: 20px;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
Expand Down Expand Up @@ -450,7 +455,7 @@
}
.params-value {
width: 250px;
width: 350px;
text-align: left;
}
Expand Down

0 comments on commit 8a30cb7

Please sign in to comment.