代码搜索:uint8
找到约 10,000 项符合「uint8」的源代码
代码结果 10,000
www.eeworm.com/read/361503/10049839
m segment.m
function [bw] = segment(net,img)
%segment 利用训练好的神经网络进行分割图像
% net - 已经训练好的神经网络
% img - 等分割的图像
%输出 bw - 分割后的二值图像
[m n] = size(img);
P = img(:) ;
P = double(P);
P = P' ;
T = sim(net,P);
T(T
www.eeworm.com/read/361503/10049844
asv segment.asv
function [bw] = segment(net,img)
%segment 利用训练好的神经网络进行分割图像
% net - 已经训练好的神经网络
% img - 等分割的图像
%输出 bw - 分割后的二值图像
[m n] = size(img);
P = img(:) ;
P = double(P);
P = P' ;
T = sim(net,P);
T(T
www.eeworm.com/read/165545/10057725
bak printertest.h.bak
uint8 test[3][32]=
{
//---------------------------------------------------------------------------//
/*-- 文字: 误 --*/
/*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/
0x40,0x41,0xCE,0x04,0x00,0x40,0x
www.eeworm.com/read/165545/10057728
h printertest.h
uint8 test[3][32]=
{
//---------------------------------------------------------------------------//
/*-- 文字: 误 --*/
/*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/
0x40,0x41,0xCE,0x04,0x00,0x40,0x
www.eeworm.com/read/165266/10070422
h ylscrollwidget.h
#ifndef __YLSCROLLWIDGET_H__
#define __YLSCROLLWIDGET_H__
#include "AEECLSID_YLSCROLLWIDGET_bid.h"
#include "AEEScrollWidget.h"
#include "AEEWModel.h"
#include "DecoratorWidget.h"
#include "
www.eeworm.com/read/360502/10089994
c main.c
#include
#define INTERRUPT_EXT0 0
#define INTERRUPT_EXT1 2
#define INTERRUPT_TIME0 1
#define INTERRUPT_TIME1 3
#define INTERRUPT_COMM 4
#define INTERRUPT_T
www.eeworm.com/read/164658/10098613
h sndsiic.h
/* sndsIIC.h - header file for SNDS IIC driver */
#ifndef __INCsndsIICh
#define __INCsndsIICh
#include "vxWorks.h"
#include "types\vxTypesBase.h"
#include "types\vxTypes.h"
#include "iv.h"
#i
www.eeworm.com/read/164657/10098712
h sysled.h
/* sysLed.h - LED driver Header File */
/* Copyright 1984-2001 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,16jul02,m_h C++ protection
01b,26apr01,m_h convert tabs
www.eeworm.com/read/164407/10110449
h sdl_events.h
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2004 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library Gener
www.eeworm.com/read/359900/10116942
m quantize.m
function y = quantize(x, b, type)
%QUANTIZE Quantizes the elements of a UINT8 matrix.
% Y = QUANTIZE(X, B, TYPE) quantizes X to B bits. Truncation is
% used unless TYPE is 'igs' for Improved Gr