<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/hirusagari/">
    <title>openCVのtipsとか@Wiki</title>
    <link>http://w.atwiki.jp/hirusagari/</link>
    <atom:link href="https://w.atwiki.jp/hirusagari/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>openCVのtipsとか@Wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2006-06-19T21:02:06+09:00</dc:date>
    <utime>1150718526</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/hirusagari/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hirusagari/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/hirusagari/pages/1.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/hirusagari/pages/5.html">
    <title>IPLimage構造体</title>
    <link>https://w.atwiki.jp/hirusagari/pages/5.html</link>
    <description>
      
&lt;p&gt;
openCVではIPLimageという構造体を使って画像を取り扱う。&lt;/p&gt;
&lt;p&gt;
たとえばファイルからイメージをロードする際、また、USBカメラから画像を取得する際など全てこの構造体に格納した後に操作を行うスタイルとなっている。&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;具体的には以下のような構造を持つ。&lt;/p&gt;
&lt;br&gt;
&lt;pre&gt;
typedef struct _IplImage
{
    int  nSize;         /* sizeof(&lt;b style=
&quot;COLOR: black; BACKGROUND-COLOR: #a0ffff&quot;&gt;IplImage&lt;/b&gt;) */
    int  ID;            /* version (=0)*/
    int  nChannels;     /* Most of &lt;b style=
&quot;COLOR: black; BACKGROUND-COLOR: #ffff66&quot;&gt;OpenCV&lt;/b&gt; functions support 1,2,3 or 4 channels */
    int  alphaChannel;  /* ignored by &lt;b style=
&quot;COLOR: black; BACKGROUND-COLOR: #ffff66&quot;&gt;OpenCV&lt;/b&gt; */
    int  depth;         /* pixel depth in bits: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16S,
                           IPL_DEPTH_32S, IPL_DEPTH_32F and IPL_DEPTH_64F are supported */
    char colorModel[4]; /* ignored by &lt;b style=
&quot;COLOR: black; BACKGROUND-COLOR: #ffff66&quot;&gt;OpenCV&lt;/b&gt; */
    char channelSeq[4]; /* ditto */
    int  dataOrder;     /* 0 - interleaved color channels, 1 - separate color channels.
            </description>
    <dc:date>2006-06-19T21:02:06+09:00</dc:date>
    <utime>1150718526</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hirusagari/pages/4.html">
    <title>環境構築</title>
    <link>https://w.atwiki.jp/hirusagari/pages/4.html</link>
    <description>
      
&lt;h3&gt;　　バイナリをダウンロード&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&quot;external&quot; href=
&quot;http://sourceforge.net/projects/opencvlibrary/&quot;&gt;http://sourceforge.net/projects/opencvlibrary/&lt;/a&gt;&lt;/li&gt;
&lt;li style=&quot;LIST-STYLE-TYPE: none&quot;&gt;
&lt;p&gt;インストール先は適当でよし。&lt;/p&gt;
&lt;p&gt;つづいてVC++にてライブラリを通してやればいい。&lt;/p&gt;
&lt;/li&gt;
&lt;li style=&quot;LIST-STYLE-TYPE: none&quot;&gt;
&lt;p&gt;以下&lt;a href=
&quot;http://luvtechno.net/h/hiki.cgi?OpenCV&quot;&gt;http://luvtechno.net/h/hiki.cgi?OpenCV&lt;/a&gt;からコピペ。&lt;/p&gt;
&lt;/li&gt;
&lt;li style=&quot;LIST-STYLE-TYPE: none&quot;&gt;&lt;br&gt;&lt;/li&gt;
&lt;li style=&quot;LIST-STYLE-TYPE: none&quot;&gt;
&lt;h3&gt;includeパスの設定&lt;/h3&gt;
&lt;/li&gt;
&lt;li style=&quot;LIST-STYLE-TYPE: none&quot;&gt;
&lt;p class=&quot;section&quot;&gt;
構成プロパティ→C/C++→全般→追加のインクルードディレクトリ&lt;/p&gt;
&lt;div class=&quot;section&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&amp;lt;Install folder&amp;gt;OPENCVCVINCLUDE&lt;/li&gt;
&lt;li&gt;&amp;lt;Install folder&amp;gt;OPENCVCVAUXINCLUDE&lt;/li&gt;
&lt;li&gt;&amp;lt;Install folder&amp;gt;OPENCVCXCOREINCLUDE&lt;/li&gt;
&lt;li&gt;&amp;lt;Install folder&amp;gt;OPENCVOTHERLIBSHIGHGUI&lt;/li&gt;
&lt;li&gt;&amp;lt;Install folder&amp;gt;OPENCVOTHERLIBSCVCAMINCLUDE&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;h4&gt;&lt;a id=&quot;l7&quot; name=&quot;l7&quot;&gt;&lt;/a&gt;libパスの設定&lt;/h4&gt;
&lt;p&gt;
構成プロパティ→リンカ→全般→追加のライブラリディレクトリ&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;    </description>
    <dc:date>2006-06-19T20:48:03+09:00</dc:date>
    <utime>1150717683</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/hirusagari/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/hirusagari/pages/1.html</link>
    <description>
      いろいろ更新中...    </description>
    <dc:date>2006-06-19T21:03:08+09:00</dc:date>
    <utime>1150718588</utime>
  </item>
  </rdf:RDF>
