代码搜索结果
找到约 10,000 项符合
Image 的代码
image.js
function layerRef1(FrameNumber) {
var imageid = 1;
var imagemax = getCookie("Max");
for(imageid = 1; imageid < imagemax ; imageid++)
{
if (navigator.appName == 'Netscape') {
if (parent.fra
image.m
RGB = imread('E:\1.jpg');
imshow(RGB);
text(15,15,'Estimate radius of the roll of tape',...
'FontWeight','bold','Color','y');
image.c
#include
#include "image.h"
struct image *image_new(int width, int height)
{
struct image *img = (struct image*)malloc(sizeof(struct image));
if(img)
{
img->width = width;
img->heigh
image.h
#ifndef _IMAGE_H_INCLUDED_
#define _IMAGE_H_INCLUDED_
struct image
{
int bufsize;
int width, height;
unsigned char *buf;
};
struct RGB
{
char r;
char g;
char b;
};
struct image *image_new(in
image.txt
下面是OPENCV B4.0 附带的 FLOOD FILL 算法的源代码样例,可以实现简单的彩色图像分割。
#ifdef _CH_
#pragma package
#endif
#ifndef _EiC
#include "cv.h"
#include "highgui.h"
#include
#include