代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/129171/14260648
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/129171/14260764
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/129171/14260839
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/129171/14260900
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/129171/14260939
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#incl
www.eeworm.com/read/129171/14261118
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/129171/14261259
cpp image.cpp
//
// 24Bits/Pixel 图像
//
// Copyright (c) 2000-2001 Chihiro.SAKAMOTO (HyperWorks)
//
#include "StdAfx.h"
#include "Application.h"
#include "Image.h"
#include "File.h"
#include "Misc.h"
#inc
www.eeworm.com/read/230010/14309237
h bmpstruct.h
//BMP图像文件信息头文件
typedef struct
{
unsigned char bfType1; //文件类型
unsigned char bfType2;
unsigned long bfSize; //bmp文件长度
unsigned short Reserved1;
unsigned short
www.eeworm.com/read/215321/15065412
m ch8_3_1.m
%图像模糊
I = imread('cameraman.tif');
subplot(2,2,1);
imshow(I); title('Original Image');
H = fspecial('motion',20,45);
MotionBlur = imfilter(I,H,'replicate');
subplot(2,2,2);
imshow(MotionBlur)