Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
neekeshpanchal authored Jul 6, 2024
1 parent 8334499 commit a53799f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,12 @@
flex: 1;
max-width: 100%;
margin-left: 2rem;
text-align: left;
}
.tweak-section {
position: relative;
overflow: hidden;
background-color: #e3e3e3;
background-color: #d5e5e8;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
Expand All @@ -222,6 +223,7 @@
}
.tweak-section.visible {
opacity: 1;
transform: translateY(0);
}
.tweak-section h2 {
text-align: center;
Expand Down Expand Up @@ -286,7 +288,7 @@ <h1 id="logo">DIPLOMAT</h1>
<div class="container">
<section>
<h2>About</h2>
<p>DIPLOMAT provides a multi-animal pose estimation and editing interface. It relies on a trained CNN model (currently supporting SLEAP and DeepLabCut packages) and uses algorithms to first _**Track**_ the animal body part in a way that reduces body part losses and identity swaps, and then provides an intuitive and memory/time efficient _**Interact**_ interface to edit and re-track as needed. DIPLOMAT differs from other multi-animal tracking packages by working directly off of confidence maps instead of running peak detection, allowing for more nuanced tracking results.</p>
<p>DIPLOMAT provides a multi-animal pose estimation and editing interface. It relies on a trained CNN model (currently supporting SLEAP and DeepLabCut packages) and uses algorithms to first Track the animal body part in a way that reduces body part losses and identity swaps, and then provides an intuitive and memory/time efficient Interact interface to edit and re-track as needed. DIPLOMAT differs from other multi-animal tracking packages by working directly off of confidence maps instead of running peak detection, allowing for more nuanced tracking results.</p>
</section>

<div class="images">
Expand Down Expand Up @@ -373,12 +375,12 @@ <h3 class="text-2xl text-dark-purple mb-2">Tweak Interface</h3>
}

function showTweakVideo() {
const videoRows = document.querySelectorAll('.video-row');
videoRows.forEach(row => {
row.classList.remove('visible');
});
const tweakSection = document.getElementById('tweak');
tweakSection.classList.add('visible');
window.scrollTo({
top: tweakSection.offsetTop,
behavior: 'smooth'
});
}

window.addEventListener('scroll', () => {
Expand Down

0 comments on commit a53799f

Please sign in to comment.