代码搜索:图像重建
找到约 10,000 项符合「图像重建」的源代码
代码结果 10,000
www.eeworm.com/read/421716/10707693
m s3p.m
%============================================s3p.m=============================================
%Step3:对二值图像进行霍夫变换
%Mmax和Nmax分别为离散化的分割数,这里设置为1000
Mmax = 500;
Nmax = 500;
H = zeros(Mmax,Nmax);
www.eeworm.com/read/421716/10707702
m s1.m
%============================================s1.m=============================================
%Step1:Sobel算子求图像梯度
%定义Sobel行算子和列算子
Hr = 0.25 * [-1 -2 -1;0 0 0;1 2 1];
Hc = 0.25 * [1 0 -1;2 0 -2;1
www.eeworm.com/read/274600/10862398
m lpdenhance_main.m
function lpdenhance_main
clc
clear all
in=imread('212.bmp');
im=rgb2gray(in);
figure,imshow(in);title('原始图像');axis on;
im = double(im) / 256;
n=5;
pflit='9-7';
lpy=lpd(im,pflit,n);
for i=4
www.eeworm.com/read/462042/7211919
txt 代码16-8.txt
A = im2double(imread('rice.png')); % 读入图像并进行数据类型转换
D = dctmtx(size(A,1)); % 计算二维离散DCT矩阵
dct = D*A*D'; % DCT变换
figure, imshow(dct) % 显示变换结果
www.eeworm.com/read/462042/7211927
txt 代码2-3.txt
stats = regionprops(L,'Area');
bw = imread('text.png');
L = bwlabel(bw);
s = regionprops(L, 'centroid');
centroids = cat(1, s.Centroid);
imshow(bw)
hold on %保持状态以便在原始图像上添加质心矢量图
plot(centroi
www.eeworm.com/read/461776/7220731
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2002 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
www.eeworm.com/read/454595/7387013
txt matlab实用程序百例3.txt
下载地址:http://www.ilovematlab.cn/viewthread.php?tid=2981
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'
www.eeworm.com/read/450397/7484436
txt matlab实用程序百例3.txt
下载地址:http://www.ilovematlab.cn/viewthread.php?tid=2981
实例72:图像分析(1)
h0=figure('toolbar','none',...
'position',[198 56 350 468],...
'name','实例72');
h1=axes('parent',h0,...
'
www.eeworm.com/read/397761/8023383
m example36_hough.m
%example36_Hough
%==============
%==============
[x,a,bw,r]=delt(I);
r=mat2gray(r);
figure('name','Hough变换','numbertitle','off');
rZoom=imresize(r,[96,96],'bilinear'); %为方便在界面上显示,将图像r放大
su