📄 a_comp.h
字号:
struct sino_info{ int n_theta; int n_t; float delta_theta; float delta_t; float theta_0; float t_0; int dec_a, dec_t; };struct A_correction{ float **Y_t; /* forward projected transmission sino */ char mode; /* 'e' for emission, 't' for transmission */};struct column{ float *val; int *row; int n_row; float multiplier; struct A_correction A_cor;};struct geom_info{ float delta; float x_0; float y_0; int n_y; int n_x; float dia; };void pix_prof_comp( struct sino_info *sino, struct geom_info *geom, float ***pix_prof);void A_comp( int im_row, int im_col, struct sino_info *sino, struct geom_info *geom, float **pix_prof, struct column *sp_col);#include <mat.h>void read_mat_sino_info( MATFile *fin, /* pointer to file */ struct sino_info *sino /* Structure of specs from sinogram */ );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -