-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<template> | ||
<div class="container"> | ||
<div class="info-text"> | ||
U-FISH is integrated with the <a href="https://arxiv.org/abs/2310.18351">Bioimage.IO Chatbot</a>. | ||
Here are some examples of how you can interact with the chatbot and U-FISH. | ||
</div> | ||
<div class="info-text-1"> | ||
Example1: Let users complete cell segmentation, point identification and point counting through dialogue. | ||
</div> | ||
<video width="60%" controls> | ||
<source src="/videos/chatbot_ufish_spot_counting.mp4" type="video/mp4"> | ||
Your browser does not support the video tag. | ||
</video> | ||
<div class="info-text-1" style="margin-top: 40px;"> | ||
Example2: Users can select an area on the Viewer, and then let Chatbot count the number of spots in the selected area. | ||
</div> | ||
<video width="60%" controls> | ||
<source src="/videos/chatbot_ufish_spot_counting2.mp4" type="video/mp4"> | ||
Your browser does not support the video tag. | ||
</video> | ||
<div class="info-text" style="margin-top: 40px;"> | ||
Click here to chat with the <a href="https://ufish-team.github.io/imjoy.html?plugin=https://ufish-team.github.io/plugins/chatbot-extension.imjoy.html">🤖chatbot</a>! | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
export default { | ||
methods: { | ||
}, | ||
components: { | ||
}, | ||
} | ||
</script> | ||
|
||
<style scoped> | ||
.info-text { | ||
font-size: 1.5em; | ||
text-align: center; | ||
margin: 1em; | ||
margin-top: 0; | ||
width: 60%; | ||
} | ||
.info-text-1 { | ||
font-size: 1.2em; | ||
text-align: center; | ||
margin: 1em; | ||
margin-top: 0; | ||
width: 60%; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters