#include
#include
#include
#include
#include
static int flag=0;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void print_bin(unsigned int n,int m)//字符转为8位2进制 ,1行显示16位或24位
{
int l = sizeof(n)*8;//总位数。
int i=7;
/*if(i == 0)
{
printf("0");
return;
}
for(i = l-1; i >= 0; i --)//略去高位0.
{
if(n&(1
文件名称: 数字图像处理的几个程序例子.r下载
所属分类: 图形图象
开发工具: VC
文件大小: 3484 KB
上传时间: 2005-7-31
下载次数: 1
提 供 者: 李玲
详细介绍: 这是几个数字图像处理的程序实例,有经典的傅立叶变换和反变换、图像增强(中值滤波、增强光照)还有染色体计数。它们都是经典算法的实现。 (File Name: Digital image processing examples of a few programs. R download-owned Category: Graphic Image Development Tools: VC File Size: 3484 KB upload time: 2005-7-31 Downloads: 1 provider: Li Details: This is a few examples of digital image processing procedures, there is the classic Fourier transform and inverse transform, image enhancement (median filtering, to enhance light), there are chromosome counts. They are the classic algorithm.)
学习Opencv一书的部分参考答案,虽然不是很全,但是对入门者还是很有用的。(Learning Opencv a part of the book suggested answers, although not very wide, but still very useful for beginners.)