⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 a_comp.h

📁 关于生物光学程序的代码
💻 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 + -