图像分割(阈值分割和区域生长)vc++代码(3)
时间:2025-04-09
时间:2025-04-09
cvDestroyWindow( "win2" );
cvReleaseImage( &pImg ); //释放图像
return 0;
}
2、 区域生长法
实验代码及结果:
#include "cv.h"
#include "highgui.h"
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include"malloc.h"
#define MaxSize 1000000
struct queue{
int qu[MaxSize];
int front;
int rear;
int tag; //front==rear时表示队列满或空的标志:tag==1表示满,tag==0表示空 };
struct queue *InitQu()
{struct queue *q;
q=(struct queue *)malloc(sizeof(struct queue));//分配空间
q->front=0;
q->rear=0;
q->tag=0;
return q;
}