ADVFC32中文资料,主要介绍它的运用
2022-05-09 19:02:19 461KB vfc
1
VFC电路的proteus仿真工程文件,可以看到频率随电压变化而变化
2022-04-27 20:05:06 970KB proteus 单片机 stm32 嵌入式硬件
1
频率电压FVC和电压频率VFC之间的相互转换,详细介绍了各方法,很值得学习
2022-03-10 17:54:52 418KB 频率电压转换
1
Frequency Converter VFC x610 Series VFC 3610 : VFC 5610.pdf
2022-01-19 12:01:56 16.91MB 工业控制
人生第一个代码,和媳妇儿搞到深夜,支持下哈。需要修改文件的读取路径和储存路径。建议在arcgis里运行,在其他编译平台可能会出错,因为arcpy这个包不属于通用的那种python包。
2019-12-21 21:48:12 683B arcgis arcpy NDVI VFC
1
使用GVF域和VFC域进行图片分割 % Vector field convolution (VFC) external force field example. % % See also AMT, EXAMPLE_PIG, AM_VFC, AM_VFK, AC_DISPLAY. % % Reference % [1] Bing Li and Scott T. Acton, "Active contour external force using % vector field convolution for image segmentation," Image Processing, % IEEE Trans. on, vol. 16, pp. 2096-2106, 2007. % [2] Bing Li and Scott T. Acton, "Automatic Active Model % Initialization via Poisson Inverse Gradient," Image Processing, % IEEE Trans. on, vol. 17, pp. 1406-1420, 2008. % % (c) Copyright Bing Li 2005 - 2009. clear all disp('======================================') disp('Vector field convolution (VFC) example') %% parameter settings disp('Initializing parameters ...') SAVE_AVI = 0; % set it to 1 if you want to save the process as .avi movie DISPLAY_STREAMLINE = 0; % set it to 1 if you want to plot streamlines, note that it takes a while mu = .2; GVF_ITER = 100; normalize = 1; alpha = .5; beta = 0; tau = .5; SNAKE_ITER = 5; SNAKE_ITER1 = 60; RES = .5; clr = {'b' 'b' 'r'}; %% Read images disp('Reading images ...') U = imread('im_U.bmp'); noisyU=imread('im_Unoisy.bmp'); figure(1) %% compare 3 different cases for cs = 1:3, %% compute external force fields switch cs, case 1, % traditional GVF with Gaussian filter disp('--------------------------------------------------') disp('Case 1: GVF snake with initial circle close to FOI') disp('Computing the external force field ...') h = fspecial('gaussian',[5 5],5); f = imfilter(double(noisyU),h); titl = 'GVF'; Fext = AM_GVF(f, mu, GVF_ITER, normalize); R = 20; case 2, % traditional GVF with Gaussian filter disp('--------------------------------------------------') disp('Case 2: GVF snake with initial circle far away from FOI') disp('Computing the external force field ...
2019-12-21 19:56:10 4.58MB 主动轮廓 GVF VFC
1