代码搜索结果
找到约 8,819 项符合
RGB 的代码
ycrcb2rgb.v
/////////////////////////////////////////////////////////////////////
//// ////
//// YCrCb to RGB Color Space converter
rgb2video.py
import sys
import VFile
import getopt
import imgfile
import string
import imgconv
def main():
format = None
interval = 40
outfile = 'film.video'
try:
opts, args = getopt.getopt(sys.argv[1:], '
video2rgb.py
#! /usr/bin/env python
# Convert CMIF movie file(s) to a sequence of rgb images
# Help function
def help():
print 'Usage: video2rgb [options] [file] ...'
print
print 'Options:'
print '-q
yuv2rgb.h
#include "portab.h"
#ifndef _YUVRGB_H_
#define _YUVRGB_H_
void yuv2rgb_24(
uint8_t *puc_y, int stride_y,
uint8_t *puc_u,
uint8_t *puc_v, int stride_uv,
uint8_t *puc_out,
int
yuv2rgb.c
#include
#include "portab.h"
#include "yuv2rgb.h"
/**
*
**/
void (*convert_yuv)(unsigned char *puc_y, int stride_y,
unsigned char *puc_u, unsigned char *puc_v, int stride
yuv2rgb.c
/*
* yuv2rgb.c, Software YUV to RGB converter
*
* Copyright (C) 1999, Aaron Holtzman
*
* Functions broken out from display_x11.c and several new modes
* added by H
colorspace_rgb_mmx.asm
;/*****************************************************************************
; *
; * XVID MPEG-4 VIDEO CODEC
; * - RGB colorspace conversions -
; *
; * Copyright(C) 2002-2003 Michael Militzer
yuv2rgb.c
/*
* yuv2rgb.c, Software YUV to RGB coverter
*
* Copyright (C) 1999, Aaron Holtzman
* All Rights Reserved.
*
* Functions broken out from display_x11.c and se
colorspace_rgb_mmx.asm
;/*****************************************************************************
; *
; * XVID MPEG-4 VIDEO CODEC
; * - RGB colorspace conversions -
; *
; * Copyright(C) 2002-2003 Michael Militz
rgb2ycrcb.v
/////////////////////////////////////////////////////////////////////
//// ////
//// RGB to YCrCb Color Space converter