Skip to content

Instantly share code, notes, and snippets.

@sean-smith
Created September 23, 2015 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sean-smith/efe537999fbe3813e225 to your computer and use it in GitHub Desktop.
Save sean-smith/efe537999fbe3813e225 to your computer and use it in GitHub Desktop.
<html>
<head>
<title> HW2 Sean Smith </title>
<style>
<!--
body{
font-family: 'Trebuchet MS', Verdana;
}
p{
font-family: 'Trebuchet MS', Times;
margin: 10px 10px 15px 20px;
}
h3{
margin: 5px;
}
h2{
margin: 10px;
}
h1{
margin: 10px 0px 0px 20px;
}
div.main-body{
align:center;
margin: 30px;
}
hr{
margin:20px 0px 20px 0px;
}
-->
</style>
</head>
<body>
<center>
<a href="http://www.bu.edu"><img border="0" src="http://www.cs.bu.edu/fac/betke/images/bu-logo.gif"
width="119" height="120"></a>
</center>
<h1>Problem Set A2: Template Matching</h1>
<p>
CS 585 HW 2 <br>
Sean Matuszak
Sean Smith <br>
9/23/2015
</p>
<div class="main-body">
<hr>
<h2> Problem Definition </h2>
<p>
Give a concise description of current problem. For instance, what
needs to be solved and why it is useful? Do you make any assumptions?
What are the difficulties?
</p>
<hr>
<h2> Method and Implementation </h2>
<p>Give a concise description of the implemented method. For example, you might describe the motivation of current idea, the algorithmic steps or any formulation used in current method.
</p>
<p>
Briefly outline the functions you created in your code to carry out your algorithmic steps described above.
</p>
<hr>
<h2>Experiments</h2>
<p>
Describe your experiments, including the number of tests that you
performed, and the relevant parameter values. </p>
<p>
Define your evaluation
metrics, e.g., detection rates, accuracy, running time. </p>
<hr>
<h2> Results</h2>
<p>
List your experimental results. Provide examples of input images and output
images. If relevant, you may provide images showing any intermediate steps
</p>
<p>
<table>
<tr><td colspan=3><center><h3>Results</h3></center></td></tr>
<tr>
<td> Trial </td><td> Source Image </td> <td> Result Image</td>
</tr>
<tr>
<td> trial 1 </td>
<td> <img src="trial1.jpg"> </td>
<td> <img src="result1.jpg"> </td>
</tr>
<tr>
<td> trial 2 </td>
<td> <img src="trial2.jpg"> </td>
<td> <img src="result2.jpg"> </td>
</tr>
<tr>
<td> trial 3 </td>
<td> <img src="trial3.jpg"> </td>
<td> <img src="result3.jpg"> </td>
</tr>
</table>
</p>
<hr>
<h2> Discussion </h2>
<p>
Discuss your method and results:
<ul>
<li>What are the strengths and weaknesses of your method? </li>
<li>Do your results show that your method is generally successful or
are there limitations? Describe what you expected to find in your
experiments, and how that differed or was confirmed by your
results. </li>
<li>Potential future work. How could your method be improved? What
would you try (if you had more time) to overcome the
failures/limitations of your work?</li>
</ul>
</p>
<hr>
<h2> Conclusions </h2>
<p>
Based on your discussion, what are your conclusions? What is your
main message?
</p>
<hr>
<h2> Credits and Bibliography </h2>
<p>
OpenCV template matching: <a href="http://docs.opencv.org/doc/tutorials/imgproc/histograms/template_matching/template_matching.html">http://docs.opencv.org/doc/tutorials/imgproc/histograms/template_matching/template_matching.html</a> 9/23/15
<!--
Cite any papers or other references you consulted while developing
your solution. Citations to papers should include the authors, the
year of publication, the title of the work, and the publication
information (e.g., book name and publisher; conference proceedings and
location; journal name, volume and pages; technical report and
institution). Material on the web should include the url and date of
access.-->
</p>
<p>
Credit any joint work or discussions with your classmates.
</p>
<hr>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment