代码搜索:图像捕捉
找到约 10,000 项符合「图像捕捉」的源代码
代码结果 10,000
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)
www.eeworm.com/read/213481/15134166
java rotateimagedemo.java
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.awt.geom.AffineTransform;
import javax.swing.*;
import javax.swing.event.*;
//图像旋转演示
public class RotateImag
www.eeworm.com/read/210634/15194974
cpp dipdoc.cpp
// DipDoc.cpp : implementation of the CDipDoc class
//
#include "stdafx.h"
#include "Dip.h"
#include "DipDoc.h"
#include "MainFrm.h"
#include "ChildFrm.h"
#include "DipView.h"
//图像处理头文件
www.eeworm.com/read/208930/15230671
dat testlog.dat
Picture: D:/作业/图像/compression/sequence/basket.yuv
frame: 0
frame: 1
frame: 2
frame: 3
frame: 4
frame: 5
frame: 6
frame: 7
frame: 8
frame: 9
frame: 10
frame: 11
frame: 12
www.eeworm.com/read/13911/286363
m facerec.m
function [Out]=facerec(Trainset)
Slect=Trainset;
n=1;
M=45;
N=length(Slect);
allsamples=[];%所有训练图像
for i=1:1:2
for j=1:N
filename = sprintf('D:\\zzh\\work\\zzh\\baseline_V8\\ma
www.eeworm.com/read/14540/384206
cxx cylinder.cxx
// 本例子可用于读取单幅CT图像并显示相应DICOM文件中头信息。
// First include the required header files for the VTK classes we are using.
#include "vtkPolyDataMapper.h"
#include "vtkRenderWindow.h"
#include "vtkCamer