Difference between revisions of "Fourier Shell Correlation"

From Dynamo
Jump to navigation Jump to search
Line 5: Line 5:
 
# During a regular project, the FSC between the freshly computed [[iteration average]] and the one generated in the previous iteration is also computed. This information is used to measure the ''convergence''.
 
# During a regular project, the FSC between the freshly computed [[iteration average]] and the one generated in the previous iteration is also computed. This information is used to measure the ''convergence''.
  
<math>7\le7</math>
+
 
  
 
The command line that computes the FSC is {{docfunction|dynamo_fsc|dfsc}}. In its default settings, the FSC for two volumes with a sidelength of  ''N'' pixels would be a vector with a length of "N"/2 pixels.  
 
The command line that computes the FSC is {{docfunction|dynamo_fsc|dfsc}}. In its default settings, the FSC for two volumes with a sidelength of  ''N'' pixels would be a vector with a length of "N"/2 pixels.  

Revision as of 09:02, 25 April 2016

The Fourier Shell Correlation (FSC) between two volumes is a measure of their similarity. It assigns a coefficient between -1 and 1 to each chosen frequency range.

FSC computations are used in different areas of Dynamo

  1. During adaptive bandpassing, the FSC of the two half averages is used to measure the resolution attained at each iteration.
  2. During a regular project, the FSC between the freshly computed iteration average and the one generated in the previous iteration is also computed. This information is used to measure the convergence.


The command line that computes the FSC is dfsc. In its default settings, the FSC for two volumes with a sidelength of N pixels would be a vector with a length of "N"/2 pixels.

compute A as fourier transform of real space volume a
compute B as fourier transform of real space volume a
for each i=1
N/2
compute a discretized shell n(i)
a fourier pixel with a distance k from the center is in n(i) if i-1<=|k|<i
locate elements of A and B inside shell n(i)
A_i = A|n_i ; A vector with a
B_i =
compute cross correlation of
FSC(i) = A_i * B_i / |A_i| |B_i|

With this definition, the first element in a FSC would measure the similarity of the two first shells A_1,B_1.