wang_common.h

来自「包含了多个matlab编程在图像中加入水印的处理代码」· C头文件 代码 · 共 47 行

H
47
字号
#ifndef WANG_COMMON_H#define WANG_COMMON_H#include "dwt.h"typedef struct Subband_data_struct {  double T;  double Cmax;  double beta;  Image_tree tree;  int level;  int type;  int width;  int height;  int size;  Image image;  char** selected;} *Subband_data;Subband_data *subbands;int n_subbands;void init_subbands(Image_tree tree);Subband_data alloc_subband(int type, Image_tree tree);void free_subband(Subband_data subband);void free_subbands();void set_subband_beta(Subband_data subband, double beta);void set_subbands_beta(double beta);void set_subbands_type_beta(int type, double beta);void calc_subband_threshold(Subband_data subband);void calc_subbands_threshold();int subband_coeff_isselected(Subband_data subband, int coeff);Pixel get_subband_coeff(Subband_data subband, int coeff);void set_subband_coeff(Subband_data subband, int coeff, Pixel data);Subband_data select_subband();int select_subband_coeff_from(Subband_data subband, int from);int select_subband_coeff(Subband_data subband);void mark_subband_coeff(Subband_data subband, int coeff);Pixel figure_orig_coeff(double T, double alpha, double beta, Pixel coeff);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?