代码搜索:图像捕捉
找到约 10,000 项符合「图像捕捉」的源代码
代码结果 10,000
www.eeworm.com/read/276855/10700301
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/10700551
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/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