<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CVOCV</title>
	<atom:link href="http://blog.buzamoto.com/2008/12/26/cvocv/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.buzamoto.com/2008/12/26/cvocv/</link>
	<description>Life as a BuzaMoto Employee</description>
	<lastBuildDate>Thu, 02 Sep 2010 15:52:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter</title>
		<link>http://blog.buzamoto.com/2008/12/26/cvocv/comment-page-1/#comment-179</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 29 Jun 2009 14:49:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.buzamoto.com/?p=50#comment-179</guid>
		<description>Hi. This tool is really fantastic. I&#039;ve been banging my head trying to get fast video + open CV and you&#039;ve really made it simple, thanks so much.

I&#039;m not sure why but I cannot seem to compile my CVOCV app in Release mode, but only debug. Among the 1153 compile errors it seems to not be able to find cv.h. I note that the linker flag &quot;libs/opencv/lib/osx/libOpenCV.a&quot; is in debug and not release but adding it to release seems to have no effect.

(I&#039;m new to Objective C and Xcode I&#039;m sorry to say)

Thanks again!</description>
		<content:encoded><![CDATA[<p>Hi. This tool is really fantastic. I&#8217;ve been banging my head trying to get fast video + open CV and you&#8217;ve really made it simple, thanks so much.</p>
<p>I&#8217;m not sure why but I cannot seem to compile my CVOCV app in Release mode, but only debug. Among the 1153 compile errors it seems to not be able to find cv.h. I note that the linker flag &#8220;libs/opencv/lib/osx/libOpenCV.a&#8221; is in debug and not release but adding it to release seems to have no effect.</p>
<p>(I&#8217;m new to Objective C and Xcode I&#8217;m sorry to say)</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: buza</title>
		<link>http://blog.buzamoto.com/2008/12/26/cvocv/comment-page-1/#comment-123</link>
		<dc:creator>buza</dc:creator>
		<pubDate>Sat, 17 Jan 2009 23:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.buzamoto.com/?p=50#comment-123</guid>
		<description>Actually, now that I&#039;ve thought about it a bit more, the right thing to do would be to try to port the blob detection mechanism from touchlib (http://www.whitenoiseaudio.com/touchlib/) into CVOCV. I&#039;ll get around to it at some point, but the touchlib implementation is probably one of the better implementations to model your approach after...</description>
		<content:encoded><![CDATA[<p>Actually, now that I&#8217;ve thought about it a bit more, the right thing to do would be to try to port the blob detection mechanism from touchlib (<a href="http://www.whitenoiseaudio.com/touchlib/" rel="nofollow">http://www.whitenoiseaudio.com/touchlib/</a>) into CVOCV. I&#8217;ll get around to it at some point, but the touchlib implementation is probably one of the better implementations to model your approach after&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: buza</title>
		<link>http://blog.buzamoto.com/2008/12/26/cvocv/comment-page-1/#comment-122</link>
		<dc:creator>buza</dc:creator>
		<pubDate>Mon, 12 Jan 2009 18:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.buzamoto.com/?p=50#comment-122</guid>
		<description>Hi Chan,

There are many ways to do blob detection, and like most computer vision tasks, it really depends on what you&#039;re trying to track.

CVOCV contains a simple blob tracking implementation called &#039;blobDetect&#039; in the OpenCVprocessor class. 

When run with standard input (and not doing any background subtraction), the results can appear random. One way for you to get a better feel for what it&#039;s doing is to do the blob detection after another processing step. One thing that I haven&#039;t yet mentioned in the CVOCV docs is that the architecture allows you to easily chain together filtering operations. As an example, try running the blob detection *after* calculating optical flow with opticalFlowLK. To send the result of the optical flow on to the blob detection, simply replace the last line with a call to blobDetect as follows:

(In opticalFlowLK):
//return flow;
return [OpenCVProcessor blobDetect:flow];

I hope that helps!

-k</description>
		<content:encoded><![CDATA[<p>Hi Chan,</p>
<p>There are many ways to do blob detection, and like most computer vision tasks, it really depends on what you&#8217;re trying to track.</p>
<p>CVOCV contains a simple blob tracking implementation called &#8216;blobDetect&#8217; in the OpenCVprocessor class. </p>
<p>When run with standard input (and not doing any background subtraction), the results can appear random. One way for you to get a better feel for what it&#8217;s doing is to do the blob detection after another processing step. One thing that I haven&#8217;t yet mentioned in the CVOCV docs is that the architecture allows you to easily chain together filtering operations. As an example, try running the blob detection *after* calculating optical flow with opticalFlowLK. To send the result of the optical flow on to the blob detection, simply replace the last line with a call to blobDetect as follows:</p>
<p>(In opticalFlowLK):<br />
//return flow;<br />
return [OpenCVProcessor blobDetect:flow];</p>
<p>I hope that helps!</p>
<p>-k</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chan</title>
		<link>http://blog.buzamoto.com/2008/12/26/cvocv/comment-page-1/#comment-121</link>
		<dc:creator>Chan</dc:creator>
		<pubDate>Mon, 12 Jan 2009 10:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.buzamoto.com/?p=50#comment-121</guid>
		<description>Nice.. i&#039;m trying to make a blob tracker using CVOVC.Any suggestions?</description>
		<content:encoded><![CDATA[<p>Nice.. i&#8217;m trying to make a blob tracker using CVOVC.Any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
