代码搜索:图像重建
找到约 10,000 项符合「图像重建」的源代码
代码结果 10,000
www.eeworm.com/read/408317/11393150
cpp thinning.cpp
#include "stdafx.h"
#include "cv.h"
/*
程序:图像细化
作者:sboom(Lingch)
日期:05年1月18日
*/
void xxx(IplImage* img)
{
int i,j,k,l,wc,pos;
unsigned char color=0;
int N=img->width*img->
www.eeworm.com/read/407650/11412792
cpp contour.cpp
#include "cv.h"
#include "highgui.h"
int main( int argc, char** argv )
{
IplImage* src;
// 第一条命令行参数确定了图像的文件名。
if( argc == 2 && (src=cvLoadImage(argv[1], 0))!= 0)
{
IplImage* d
www.eeworm.com/read/404576/11482353
m lzwdecode2.m
function decode=lzwdecode2(code,si,max)
%lzwdecode(code) used to decode of lzw .the parameter code is a 1*m!
% and it return the lzw decode 1*n
%LZW解码,输入code为LZW编码序列,si为要解码生成图像的 row*col ,max 为解码
www.eeworm.com/read/158323/11626039
outdata
六个改正数:
V[1]=9.202152
V[2]=9.202152
V[3]=9.203839
V[4]=0.005452
V[5]=-0.005592
V[6]=-0.005521
======================================================
有平差之后的外方位元素计算出的地物点图像坐标:
x[1]=-101.092471,
www.eeworm.com/read/158323/11626070
txt outdata.txt
六个改正数:
V[1]=5.265171
V[2]=3.300406
V[3]=-110.294119
V[4]=0.078186
V[5]=-0.062256
V[6]=-2.710502
======================================================
由平差之后的外方位元素计算出的地物点图像坐标:
x[1]=323.972293,
www.eeworm.com/read/259744/11768981
txt readme.txt
IP Video Phone VP口的测试程序,包括单显:VP1 7104 VGA显示、VP1 7104复合视频显示,
图像自环:VP0 5150~VP1 7104、VP2 5150~VP1 7104。
www.eeworm.com/read/343864/11921064
txt readme.txt
IP Video Phone VP口的测试程序,包括单显:VP1 7104 VGA显示、VP1 7104复合视频显示,
图像自环:VP0 5150~VP1 7104、VP2 5150~VP1 7104。
www.eeworm.com/read/256299/12010207
m sumarize11_5_2b.m
%读入原始图像
I = imread('coins.png');
imshow(I)
%sobel边界探测器
BW1 = edge(I,'sobel');
%canny边界探测器
BW2 = edge(I,'canny');
figure
imshow(BW1)
figure, imshow(BW2)