代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/148879/12417522
m 12-11.m
I = imread('ic.tif');
I2 = imcrop(I,[60 40 100 90]);
%指定的矩形区域[60 40 100 90]对图像I进行剪切
imshow(I)
figure, imshow(I2)
www.eeworm.com/read/249868/12464991
m 12-11.m
I = imread('ic.tif');
I2 = imcrop(I,[60 40 100 90]);
%指定的矩形区域[60 40 100 90]对图像I进行剪切
imshow(I)
figure, imshow(I2)
www.eeworm.com/read/127242/14366450
m 12-11.m
I = imread('ic.tif');
I2 = imcrop(I,[60 40 100 90]);
%指定的矩形区域[60 40 100 90]对图像I进行剪切
imshow(I)
figure, imshow(I2)
www.eeworm.com/read/219121/14893650
m scriptfeaextract.m
% ScriptFeaExtract
% 提取签字图像的特征向量(列向量)
% 需要指定划分的strips数量,默认为6
function [FeatureVector]=ScriptFeaExtract(Image,varargin)
if(nargin==1)
Np=6;
else
Np=varargin{1};
end
[peripheralFeature]
www.eeworm.com/read/209410/15220426
h img.h
// Img.h //该头文件定义图像处理宏:
#ifndef __img_h_
#ifndef __IMG_H__
#define __img_h_
#define __IMG_H__
#ifdef __cplusplus
extern "C" {
#endif
#define PIE 3.14159265358979323846
#
www.eeworm.com/read/209410/15220486
h grphcs.h
// Grphcs.h
//该头文件定义图像处理宏:
#ifndef __grphcs_h_
#ifndef __GRPHCS_H__
#define __grphcs_h_
#define __GRPHCS_H__
#ifdef __cplusplus
extern "C" {
#endif
#define PIE 3.14159265
www.eeworm.com/read/4799/40957
cpp fruits.cpp
#include "cv.h" /* OpenCV的基本函数头文件 */
#include "highgui.h" /* OpenCV的图像显示函数头文件 */
void main()
{
IplImage *src; /* 定义IplImage指针变量src */
src = cvLoadI
www.eeworm.com/read/13922/287825
h watershed.h
#ifndef __WATERSHED_H__
#define __WATERSHED_H__
#include "ImageCenterDib.h"
//水域变换类
class Watershed:public ImgCenterDib
{
public:
int m_nBitCountOut;//输出图像每像素位数
unsigned char * m_pImg
www.eeworm.com/read/13922/287945
h graytrans.h
#ifndef _INSIDE_VISUAL_CPP_GRAYTRANS
#define _INSIDE_VISUAL_CPP_GRAYTRANS
#include "ImageCenterDib.h"
//灰度变换类
class GrayTrans:public ImgCenterDib
{
public:
//输出图像每像素位数
int m_nBitCountOut;