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

📄 cccopy.c

📁 image processing including fourier,wavelet,segmentation etc.
💻 C
字号:
/*----------------------------- MegaWave Module -----------------------------*//* mwcommand  name = {cccopy};  version = {"1.0"};  author = {"Jacques Froment"};  function = {"Copy of a color char image. Use it as format converter"};  usage = {   A->Input  "Input (could be a ccimage)",   ...<-Output "Output (copy of the input)"   };*//*--- MegaWave2 - Copyright (C)1994 Jacques Froment. All Rights Reserved. ---*/#include <stdio.h>/* Include always the MegaWave2 Library */#include "mw.h"Ccimage cccopy(Input,Output)Ccimage 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 + -