<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>emre şahin's digital garden 🍃 - classic CV</title>
    <link>https://emresahin.net/tags/classic-cv/</link>
    <description>Posts in the classic CV tag</description>
    <language>en</language>
    <managingEditor>contact@emresahin.net (Emre Şahin)</managingEditor>
    <lastBuildDate>Tue, 15 Sep 2026 19:46:32 +0000</lastBuildDate>
    <atom:link href="https://emresahin.net/tags/classic-cv/rss.xml" rel="self" type="application/rss+xml"/>
    <item>
      <title>Paper Review: Computerized Paleography: Tools for Historical Manuscripts</title>
      <published>2012-07-23T07:08:00+00:00</published>
      <updated>2012-07-23T07:08:00+00:00</updated>
      <author>Emre Şahin</author>
      <pubDate>Mon, 23 Jul 2012 07:08:00 +0000</pubDate>
      <link>https://emresahin.net/12061-15-2433/</link>
      <guid isPermaLink="true">https://emresahin.net/12061-15-2433/</guid>
      <description>Authors: Lior Wolf, Liza Potikha, Nachum Dershowitz, Roni Shweka, Yaacov Choueka Keywords: handwritten paleography fragments SIFT sparse coding dictionaries Q1: What is the ultimate goal of the authors? The two main goals are providing tools to bring together fragments of the same page (specifica...</description>
      <category>Computer Vision</category>
      <category>Paper Review</category>
      <category>Paleography</category>
      <category>handwriting</category>
      <category>historical documents</category>
      <category>SIFT</category>
      <category>classic CV</category>
      <category>sparse coding</category>
      <category>Cairo Genizah</category>
      <category>paleography</category>
      <content:encoded><![CDATA[<p>Authors: Lior Wolf, Liza Potikha, Nachum Dershowitz, Roni Shweka, Yaacov Choueka</p>
<h1 id="keywords">Keywords:</h1>
<ul>
<li>handwritten</li>
<li>paleography</li>
<li>fragments</li>
<li>SIFT</li>
<li>sparse coding</li>
<li>dictionaries</li>
</ul>
<h1 id="q1-what-is-the-ultimate-goal-of-the-authors">Q1: What is the ultimate goal of the authors?</h1>
<p>The two main goals are providing tools to bring together fragments of the same page (specifically from the Cairo Genizah) and trying to classify handwriting and dates.</p>
<h1 id="q2-how-is-sift-used">Q2: How is SIFT used?</h1>
<p>SIFT is used at various points of a letter to generate descriptors. There are 100,000 descriptors overall before inputting them into k-means. SIFT serves as the main classification technique.</p>
<h1 id="q3-how-did-they-produce-the-letter-dictionaries">Q3: How did they produce the letter dictionaries?</h1>
<p>They produced letter dictionaries using the generated SIFT descriptors and k-means clustering to find representative visual words.</p>
<h1 id="q4-what-is-sparse-coding-and-its-importance">Q4: What is sparse coding and its importance?</h1>
<p>Sparse coding is used to code documents (or any other codable thing) with a separating/descriptive code which also shows the similarity between items. An example might be the bag of visual words approach.</p>
<h1 id="q5-are-there-any-relevant-techniques-for-our-research">Q5: Are there any relevant techniques for our research?</h1>
<p>This is relevant to the Divan matching problem. This work might be cited in historical document matching, although it covers techniques that are generally well-known in the field.</p>]]></content:encoded>
    </item>
    <item>
      <title>Paper Review: A practical approximation algorithm for LMS line estimator</title>
      <published>2012-07-21T14:00:00+00:00</published>
      <updated>2012-07-21T14:00:00+00:00</updated>
      <author>Emre Şahin</author>
      <pubDate>Sat, 21 Jul 2012 14:00:00 +0000</pubDate>
      <link>https://emresahin.net/12059-20-154/</link>
      <guid isPermaLink="true">https://emresahin.net/12059-20-154/</guid>
      <description>Authors: David M. Mount, Nathan S. Netanyahu, Kathleen Romanik, Ruth Silverman, Angela Y. Wue Keywords: LMS estimator O(n logn) bracelet slab random approximation quantiles Q1: What is LMS? Given a set of points $p_0, …, p_n$, LMS finds a line $q_0, q_1$ that minimizes the median of the square of...</description>
      <category>Computer Vision</category>
      <category>Paper Review</category>
      <category>estimator</category>
      <category>classic CV</category>
      <category>approximation</category>
      <category>LMS</category>
      <category>line estimation</category>
      <content:encoded><![CDATA[<h1 id="authors-david-m-mount-nathan-s-netanyahu-kathleen-romanik-ruth-silverman-angela-y-wue">Authors: David M. Mount, Nathan S. Netanyahu, Kathleen Romanik, Ruth Silverman, Angela Y. Wue</h1>
<h1 id="keywords">Keywords:</h1>
<ul>
<li>LMS estimator</li>
<li>O(n logn)</li>
<li>bracelet</li>
<li>slab</li>
<li>random</li>
<li>approximation</li>
<li>quantiles</li>
</ul>
<h1 id="q1-what-is-lms">Q1: What is LMS?</h1>
<p>Given a set of points $p_0, …, p_n$, LMS finds a line $q_0, q_1$ that
minimizes the <em>median</em> of the square of distances of $p_0, …, p_n$.
This is in contrast with summing up all the squared distances and
minimizing them as in OLS (Ordinary Least Squares).</p>
<h1 id="q2-how-are-approximations-done-using-lms">Q2: How are approximations done using LMS?</h1>
<p>There are exact solutions for the LMS problem. This paper presents an
algorithm with lower complexity. It tries to find an LMS approximation
in a band defined by a parameter $\epsilon_r$.</p>
<h1 id="q3-on-which-parameters-does-the-algorithm-depend">Q3: On which parameters does the algorithm depend?</h1>
<p>The algorithm <em>approxLMS</em> depends on a set of lines, a set of quantiles,
and two error bounds $\epsilon_r$ and $\epsilon_q$.</p>
<h1 id="q4-how-can-this-help-in-our-line-approximations">Q4: How can this help in our line approximations?</h1>
<p>This paper is aimed towards providing an efficient algorithm for random
approximations. Since we need <em>repeatability</em> in our keypoint detection,
it might be harder (or impossible) to prove that the algorithm produces
the exact same line endings in each run with a similar set of points. Hence,
it’s not usable in our studies.</p>]]></content:encoded>
    </item>
  </channel>
</rss>
