<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=lmrcImageSinogram%28API%29</id>
		<title>lmrcImageSinogram(API) - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=lmrcImageSinogram%28API%29"/>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImageSinogram(API)&amp;action=history"/>
		<updated>2026-05-13T15:36:27Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.6</generator>

	<entry>
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImageSinogram(API)&amp;diff=3842&amp;oldid=prev</id>
		<title>Kinoshita: Created page with &quot;DataManip/mrcImage/src/'''lmrcImageSinogram''' is API for Sinogram image. It is used by mrcImageSinogramCreate, mrcImageSinogramCorrelation.  == constant ==  == struct...&quot;</title>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcImageSinogram(API)&amp;diff=3842&amp;oldid=prev"/>
				<updated>2014-09-03T23:48:36Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;DataManip/mrcImage/src/&amp;#039;&amp;#039;&amp;#039;lmrcImageSinogram&amp;#039;&amp;#039;&amp;#039; is API for Sinogram image. It is used by &lt;a href=&quot;/Eos/index.php/mrcImageSinogramCreate&quot; title=&quot;mrcImageSinogramCreate&quot;&gt;mrcImageSinogramCreate&lt;/a&gt;, &lt;a href=&quot;/Eos/index.php/mrcImageSinogramCorrelation&quot; title=&quot;mrcImageSinogramCorrelation&quot;&gt;mrcImageSinogramCorrelation&lt;/a&gt;.  == constant ==  == struct...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;DataManip/mrcImage/src/'''lmrcImageSinogram''' is API for Sinogram image. It is used by [[mrcImageSinogramCreate]], [[mrcImageSinogramCorrelation]].&lt;br /&gt;
&lt;br /&gt;
== constant ==&lt;br /&gt;
&lt;br /&gt;
== struct ==&lt;br /&gt;
Setting data for this API&lt;br /&gt;
 typedef struct lmrcImageSinogramInfo {&lt;br /&gt;
 	double dphi;&lt;br /&gt;
 	double Smalldphi;&lt;br /&gt;
 	int correlationMode;&lt;br /&gt;
 	int LengthMode;&lt;br /&gt;
 	int LengthCorrelationMode;&lt;br /&gt;
 	int LengthThresholdMode;&lt;br /&gt;
 &lt;br /&gt;
 	double weightOf0thDerivation;&lt;br /&gt;
 	double weightOf1stDerivation;&lt;br /&gt;
 	double weightOf2ndDerivation;&lt;br /&gt;
 	double threshold;&lt;br /&gt;
 	double LengthCorrelationThreshold;&lt;br /&gt;
 	double weightOfLength;&lt;br /&gt;
 	double LengthThresholdRatio;&lt;br /&gt;
 } lmrcImageSinogramInfo;&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
===Sinogram Transform===&lt;br /&gt;
Transform from 2D image to Sinogram image&lt;br /&gt;
 extern void lmrcImageSinogramCreate(mrcImage* out, mrcImage* in, lmrcImageSinogramInfo* linfo, int mode);&lt;br /&gt;
&lt;br /&gt;
===Sinogram Correlation===&lt;br /&gt;
====Main====&lt;br /&gt;
 extern void lmrcImageSinogramCorrelation(mrcImage* out, mrcImage* in, mrcImage* ref, lmrcImageSinogramInfo* linfo, int mode);&lt;br /&gt;
Select a correlation method by setting mode and linfo-&amp;gt;LengthMode.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;tr&amp;gt; &lt;br /&gt;
		&amp;lt;th&amp;gt;mode&amp;lt;/th&amp;gt; &lt;br /&gt;
		&amp;lt;th&amp;gt;Correlation method&amp;lt;/th&amp;gt; &lt;br /&gt;
	&amp;lt;/tr&amp;gt; &lt;br /&gt;
	&amp;lt;tr&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;simple Correlation(lmrcImageSinogramCorrelation0)&amp;lt;/td&amp;gt; &lt;br /&gt;
	&amp;lt;/tr&amp;gt; &lt;br /&gt;
	&amp;lt;tr&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;weight Correlation(lmrcImageSinogramCorrelation1)&amp;lt;/td&amp;gt; &lt;br /&gt;
	&amp;lt;/tr&amp;gt; &lt;br /&gt;
	&amp;lt;tr&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;threshold Correlation(lmrcImageSinogramCorrelation2)&amp;lt;/td&amp;gt; &lt;br /&gt;
	&amp;lt;/tr&amp;gt; &lt;br /&gt;
	&amp;lt;tr&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;3&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;power weight Correlation&amp;lt;/td&amp;gt; &lt;br /&gt;
	&amp;lt;/tr&amp;gt; &lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Correlation of each mode====&lt;br /&gt;
 void lmrcImageSinogramCorrelation0(mrcImage* out, mrcImage* in, mrcImage* ref, lmrcImageSinogramInfo* linfo, int mode);&lt;br /&gt;
 double lmrcImageOneLineSinogramCorrelation0(mrcImage* in, mrcImage* ref, int mode);&lt;br /&gt;
&lt;br /&gt;
 void lmrcImageSinogramCorrelation1(mrcImage* out, mrcImage* in, mrcImage* ref, lmrcImageSinogramInfo* linfo, int mode);&lt;br /&gt;
 void lmrcImageSinogramCorrelation2(mrcImage* out, mrcImage* in, mrcImage* ref, lmrcImageSinogramInfo* linfo, int mode);&lt;br /&gt;
&lt;br /&gt;
===Derivation===&lt;br /&gt;
 void lmrcImageDerivationCalculation(mrcImage* out, mrcImage* in, int mode);&lt;br /&gt;
 void lmrcImageOneLineDerivationCalculation(mrcImage* out, mrcImage* in, int mode);&lt;br /&gt;
&lt;br /&gt;
===Length===&lt;br /&gt;
 void lmrcImageSinogramLengthCorrelation(mrcImage* out, mrcImage* in, mrcImage* ref, lmrcImageSinogramInfo* linfo, int mode);&lt;/div&gt;</summary>
		<author><name>Kinoshita</name></author>	</entry>

	</feed>