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

📄 fcopy.c

📁 image processing including fourier,wavelet,segmentation etc.
💻 C
字号:
/*----------------------------- 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -