代码搜索:图像比对
找到约 10,000 项符合「图像比对」的源代码
代码结果 10,000
www.eeworm.com/read/189633/8464554
tli msado15.tli
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (e5a15b13).
//
// f:\博士论文工作\算法下载\图像数据库\第08章宾馆管理系统\code\debug\msado15.tli
//
// Wrapper implementations for Win32 type library C:\pro
www.eeworm.com/read/189629/8465034
tli msado15.tli
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (c8c82dfe).
//
// f:\博士论文工作\算法下载\图像数据库\第04章仓库管理系统\代码\debug\msado15.tli
//
// Wrapper implementations for Win32 type library c:\progr
www.eeworm.com/read/189624/8465731
tlh msado15.tlh
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (197e7cd4).
//
// f:\博士论文工作\算法下载\图像数据库\vc jpg access\ado_jpg\debug\msado15.tlh
//
// C++ source equivalent of Win32 type library c:\
www.eeworm.com/read/189150/8488426
cpp setscanner.cpp
//CSetScanner类,用来确定主对话框的参数设置和预览图像信息设置
#include "stdafx.h"
#include "functions.h"
#include "source10.h"
#include "Ganguang.h"
#include "Pingqi.h"
#include "Position.h"
#include "postionInfo.h"
www.eeworm.com/read/389532/8515772
m lvboqituxiangzengqiang.m
% IEEE Image Processing, vol.9, No.6, 2000.
%--------- 滤波器对图像作增强提高视觉质量-------
clear all;
% C=double(imread('t1.bmp'));%cameraman.tifSAR01.bmpBARB.BMP;5-51fft6649-060-1.tifmed01.jpg
C=double
www.eeworm.com/read/427284/8953836
m lha.m
function [Y]=LHA(X,k) %X为载体图像,k为嵌入率,0<k≤1
X=double(X);
[m,n]=size(X);
L=floor((m*n)*k);
mess=rand(1,L); %产生秘密信息
for i=1:L
if mess(i)
www.eeworm.com/read/284031/8970205
c find.c
//从一副图像576×720的一行中找到低于threshold的点
void find(unsigned maddr,unsigned address,unsigned char threshold,int * x,int * y,int * n,int line_num)
{
int i;
int m;
int temp;
int over;
int line;
i
www.eeworm.com/read/284031/8970434
c find.c
//从一副图像576×720的一行中找到低于threshold的点
void find(unsigned maddr,unsigned address,unsigned char threshold,int * x,int * y,int * n,int line_num)
{
int i;
int m;
int temp;
int over;
int line;
i
www.eeworm.com/read/382934/8989933
frm 面积计算.frm
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "图像处理小程序"
ClientHeight
www.eeworm.com/read/365868/9842669
m example10_3.m
%对前面得到的cameraman.tif的二值化图像进行腐蚀操作
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
SE=eye(5);
BW1=erode(J,SE);
figure,imshow(BW1)