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

📄 fpset.c

📁 image processing including fourier,wavelet,segmentation etc.
💻 C
字号:
/*----------------------------- MegaWave Module -----------------------------*//* mwcommand  name = {fpset};  version = {"1.0"};  author = {"Lionel Moisan"};  function = {"Set a point value of a Fimage"};  usage = {    in->in        "input Fimage",    x->x          "position (x)",    y->y          "position (y)",    g->g          "value to set",    out<-fpset    "output Fimage (modified input)"    };*/#include "mw.h"Fimage fpset(in,x,y,g)Fimage in;int x,y;float g;{  mw_plot_fimage(in,x,y,g);  return(in);}

⌨️ 快捷键说明

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