代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/276855/10700765
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
www.eeworm.com/read/276855/10700922
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
www.eeworm.com/read/276855/10701035
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
www.eeworm.com/read/276855/10701395
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
www.eeworm.com/read/276855/10701545
h image.h
//
// 24Bits/Pixel图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#ifndef __image_h
#define __image_h
#include "Dib.h"
#include "Misc.h"
class CDC;
//
// 专给24bit使用的
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