fcopy.c
来自「image processing including fourier,wavel」· C语言 代码 · 共 29 行
C
29 行
/*----------------------------- MegaWave Module -----------------------------*//* mwcommand name = {fcopy}; version = {"1.0"}; author = {"Jacques Froment"}; function = {"Copy of a float image. Use it as format converter"}; usage = { A->Input "Input (could be a fimage)", ...<-Output "Output (copy of the input)" };*/#include <stdio.h>/* Include always the MegaWave2 Library */#include "mw.h"void fcopy(Input,Output)Fimage Input,*Output;{ if (*Output == NULL) mwerror(USAGE,1,"At least one Output requested\n"); *Output = Input; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?