<?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=lmrcFFTInfo%28API%29</id>
		<title>lmrcFFTInfo(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=lmrcFFTInfo%28API%29"/>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcFFTInfo(API)&amp;action=history"/>
		<updated>2026-05-04T19:13:39Z</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=lmrcFFTInfo(API)&amp;diff=2910&amp;oldid=prev</id>
		<title>Kinoshita: Created page with &quot;DataManip/mrcImage/src/'''lmrcFFTInfo''' is API that gets a part of mrcImage(FFT) data.  == constant ==  == struct == It is stored Amplitude data from lmrcFSInfo.  typedef...&quot;</title>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=lmrcFFTInfo(API)&amp;diff=2910&amp;oldid=prev"/>
				<updated>2014-08-06T05:41:44Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;DataManip/mrcImage/src/&amp;#039;&amp;#039;&amp;#039;lmrcFFTInfo&amp;#039;&amp;#039;&amp;#039; is API that gets a part of &lt;a href=&quot;/Eos/index.php/mrcImage&quot; title=&quot;mrcImage&quot;&gt;mrcImage&lt;/a&gt;(FFT) data.  == constant ==  == struct == It is stored Amplitude data from lmrcFSInfo.  typedef...&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/'''lmrcFFTInfo''' is API that gets a part of [[mrcImage]](FFT) data.&lt;br /&gt;
&lt;br /&gt;
== constant ==&lt;br /&gt;
&lt;br /&gt;
== struct ==&lt;br /&gt;
It is stored Amplitude data from lmrcFSInfo.&lt;br /&gt;
 typedef struct mrcFSInfo {&lt;br /&gt;
 	double F00;	&lt;br /&gt;
 	double Max;&lt;br /&gt;
 	double MaxExceptForF00;&lt;br /&gt;
 } mrcFSInfo;&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
===Output the Average Amplitude of each y component.===&lt;br /&gt;
It outputs x component's Average Amplitude of each y component.&lt;br /&gt;
 extern floatVector* lmrcFSInfoYAxisMagAverage(mrcImage* fft);&lt;br /&gt;
&lt;br /&gt;
===Project Average Amplitude on Y-axis===&lt;br /&gt;
It writes Average Amplitude of x component to Real Part(Imaginary Part=0) on Y-axis.&lt;br /&gt;
 extern void lmrcFSInfoYAxisProjection(mrcImage* out, mrcImage* in, long mode);&lt;br /&gt;
&lt;br /&gt;
===FrequencyFiltering of x component===&lt;br /&gt;
Perform [[Low-Pass Filter]] of Frequency &amp;quot;RMaxX&amp;quot; to x conponent.&lt;br /&gt;
 extern void lmrcFSInfoXFiltering(mrcImage* out, mrcImage* in, float RMaxX, long mode);&lt;br /&gt;
&lt;br /&gt;
===Get Amplitude data===&lt;br /&gt;
Amplitude data of FFT is stored at &amp;quot;linfo&amp;quot;.&lt;br /&gt;
 extern void lmrcFSInfo(mrcFSInfo* linfo, mrcImage* fft);&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;member&amp;lt;/th&amp;gt; &lt;br /&gt;
		&amp;lt;th&amp;gt;stored data&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;F00&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;Amplitude at Origin(0, 0, 0)&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;Max&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;Max of Amplitude&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;MaxExceptForF00&amp;lt;/td&amp;gt; &lt;br /&gt;
		&amp;lt;td&amp;gt;Max of Amplitude without Origin&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;
===Average Power each angle===&lt;br /&gt;
====Output as Vector Array====&lt;br /&gt;
 extern floatVector** lmrcFSInfoScatteringAngularDistributionDivisionAverage(mrcImage* fft, mrcImageParaTypeReal axis, mrcImageParaTypeInteger N, int mode);&lt;br /&gt;
 extern floatVector** lmrcFSInfoScatteringAngularDistributionDivisionAverageDelR(mrcImage* fft, mrcImageParaTypeReal axis, mrcImageParaTypeInteger N, mrcImageParaTypeReal delR, int mode);&lt;br /&gt;
axis: Initial angle, N: Number, delR: Spatial frequency's Interval&lt;br /&gt;
&lt;br /&gt;
====Output Average data in Fourier Space====&lt;br /&gt;
 extern double lmrcImageFSInfoScatteringAugularDistribution3DShell(mrcImage* fft, double minR, double maxR, mrcPixelDataHowToGet mode );&lt;br /&gt;
Spatial frequency's range minR, maxR&amp;lt;br&amp;gt;&lt;br /&gt;
kind of average data: mode&lt;/div&gt;</summary>
		<author><name>Kinoshita</name></author>	</entry>

	</feed>