Skip to content

Commit

Permalink
stereo videos
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmead515 committed Oct 26, 2024
1 parent e3154ed commit 6e2705c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
},
{
"cell_type": "code",
"execution_count": 162,
"execution_count": 166,
"metadata": {},
"outputs": [
{
Expand All @@ -453,15 +453,15 @@
"<IPython.core.display.Video object>"
]
},
"execution_count": 162,
"execution_count": 166,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from IPython.display import Video\n",
"\n",
"Video('videos/checkerboard.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
"Video('/videos/checkerboard.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
]
},
{
Expand Down Expand Up @@ -1322,7 +1322,7 @@
"source": [
"from IPython.display import Video\n",
"\n",
"Video('videos/tuning-process.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
"Video('/videos/tuning-process.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
]
},
{
Expand Down Expand Up @@ -1494,7 +1494,7 @@
}
],
"source": [
"Video('videos/depth.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
"Video('/videos/depth.mp4', html_attributes='loop autoplay muted playsinline width=\"100%\"')"
]
},
{
Expand Down
10 changes: 5 additions & 5 deletions notebooks/stereographic_depth_estimation_opencv.html
Original file line number Diff line number Diff line change
Expand Up @@ -7974,12 +7974,12 @@ <h2 id="Step-1:-Capture-Checkerboard-Images">Step 1: Capture Checkerboard Images
<div class="jp-Collapser jp-InputCollapser jp-Cell-inputCollapser">
</div>
<div class="jp-InputArea jp-Cell-inputArea">
<div class="jp-InputPrompt jp-InputArea-prompt">In [162]:</div>
<div class="jp-InputPrompt jp-InputArea-prompt">In [166]:</div>
<div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
<div class="cm-editor cm-s-jupyter">
<div class="highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">Video</span>

<span class="n">Video</span><span class="p">(</span><span class="s1">'videos/checkerboard.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
<span class="n">Video</span><span class="p">(</span><span class="s1">'/videos/checkerboard.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
</pre></div>
</div>
</div>
Expand All @@ -7990,7 +7990,7 @@ <h2 id="Step-1:-Capture-Checkerboard-Images">Step 1: Capture Checkerboard Images
</div>
<div class="jp-OutputArea jp-Cell-outputArea">
<div class="jp-OutputArea-child jp-OutputArea-executeResult">
<div class="jp-OutputPrompt jp-OutputArea-prompt">Out[162]:</div>
<div class="jp-OutputPrompt jp-OutputArea-prompt">Out[166]:</div>
<div class="jp-RenderedHTMLCommon jp-RenderedHTML jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/html" tabindex="0">
<video autoplay="" loop="" muted="" playsinline="" src="videos/checkerboard.mp4" width="100%">
Your browser does not support the <code>video</code> element.
Expand Down Expand Up @@ -8861,7 +8861,7 @@ <h1 id="Step-3:-Tuning-the-Block-Matching-Algorithm">Step 3: Tuning the Block Ma
<div class="cm-editor cm-s-jupyter">
<div class="highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">Video</span>

<span class="n">Video</span><span class="p">(</span><span class="s1">'videos/tuning-process.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
<span class="n">Video</span><span class="p">(</span><span class="s1">'/videos/tuning-process.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
</pre></div>
</div>
</div>
Expand Down Expand Up @@ -9043,7 +9043,7 @@ <h1 id="Step-4:-Depth-Estimation">Step 4: Depth Estimation<a class="anchor-link"
<div class="jp-InputPrompt jp-InputArea-prompt">In [164]:</div>
<div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
<div class="cm-editor cm-s-jupyter">
<div class="highlight hl-ipython3"><pre><span></span><span class="n">Video</span><span class="p">(</span><span class="s1">'videos/depth.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
<div class="highlight hl-ipython3"><pre><span></span><span class="n">Video</span><span class="p">(</span><span class="s1">'/videos/depth.mp4'</span><span class="p">,</span> <span class="n">html_attributes</span><span class="o">=</span><span class="s1">'loop autoplay muted playsinline width="100%"'</span><span class="p">)</span>
</pre></div>
</div>
</div>
Expand Down

0 comments on commit 6e2705c

Please sign in to comment.