资源简介
读取raw图并转换为rgb图
代码片段和文件信息
clc;
clear;
close all;
[filenamepathname]=uigetfile({‘*.*‘‘All Files (*.*)‘}‘Pick a file‘);
file = strcat(pathnamefilename);
% raw图的尺寸
row = 30;
col = 72;
% 读图 所读raw图为8位
fid=fopen(file ‘r‘);
Bayer=fread(fid[rowcol]‘uint8‘);
fclose(fid);
% 转换到RGB空间
RGB_Pro=raw2rgb(Bayerrowcol); % 转换为RGB图像
% 显示
figure;imshow(RGB_Pro);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-08-22 18:16 raw2rgb\
文件 389 2014-08-22 18:13 raw2rgb\main.m
文件 871 2014-08-22 18:13 raw2rgb\raw2rgb.m
文件 2160 2013-06-07 22:12 raw2rgb\roi_1_30x72_41.raw
相关资源
- jpg 2 rgb565 matlab code 实现将jpg格式的图
- isrgb 判断图像是否为RGB格式。
- ColorHistogram 图像检索——提取颜色特
- Bayer2RGB 用Matlab写的Bayer插值与白平衡
- YUV_tool 读取使用YUV格式视频的一系列
- Motion_detect_with_RGBshadow_remove 利用背景
- rgb 将一副图像进行rgb分离
- RGB_Criminisi Criminisi算法修复彩色图像
- rgb2hsi--hsi2rgb 彩色图像处理 格式转化
-
PCA降噪在Raw域(PCA-ba
sed Spatially Ad - matlab开发-drawline
- 简单肤色检测matlab代码
- RGB YUV颜色空间转换matlab实现
- 提取区域内RGB均值
- matlab色空间转换rgb到lch
- matlab读取rgb图像转为hsi图像并显示出
- matlab 爬虫获取链家网新房信息写入
- raw 图像读取
- matlab读取raw格式图像
- RGB到YIQ,RGB到HSI,RGB到YcbCr,RGB到XY
- Image-Processing-Toolbox isrgbisindisbw
- 光谱波长转RGB三分量
评论
共有 条评论