一个简单的随机色生成器

本文介绍了一个简单的C++随机颜色生成器,能够生成随机色及指定范围内的随机渐变色。通过`colorRandomMaker::randomInRange(...)`和`colorRandomMaker::colorInRange(...)`两个函数,可以方便地定制颜色通道的随机范围,实现颜色的随机变化效果。
摘要由CSDN通过智能技术生成

一个简单的随机色生成器

可以放便的生成随机色和指定范围内的随机色(随机渐变色).

main.cpp

// main.cpp : 定义控制台应用程序的入口点。
// cvcore 2.4.8

#include "stdafx.h"
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include <iostream>
using namespace std;
#include "cColorRandomMaker.class.h"
#include <windows.h>
#include <time.h>

int _tmain(int argc, _TCHAR* argv[])
{
	colorRandomMaker *rcg = new colorRandomMaker(_time64(nullptr));

	// 颜色A和颜色B
	float colora[3] = { 0.1f, 0.2f, 0.5f };
	float colorb[3] = { 0.9f, 0.3f, 0.7f };
	float colorr[3] = { 0.f };

	IplImage *img = cvCreateImage(cvSize(800, 100), 8, 3);
	memset(img->imageData, 0, 500 * 100 * 3);

	// 从颜色A到B的渐变色
	for (int col = 0; col < img->width; col+=4)
	{
		CvScalar color = cvScalar(
			((double)col / img->width * (colorb[0] - colora[0]) + colora[0]) * 255,
			((double)col / img->width * (colorb[1] - colora[1]) + colora[1]) * 255,
			((double)col / img->width * (colorb[2] - colora[2]) + colora[2]) * 255
			);
		cvLine(img, cvPoint(col, 0), cvPoint(col, 100), color, 4);
	}
	cvShowImage("渐变色", img);

	// 随机色(每个像素都是随机的颜色)
	for (int col = 0; col < img->width; col+=4)
	{
		CvScalar color = cvScalar(
			rcg->randomInRange(0.f, 1.f) * 255.0,
			rcg->randomInRange(0.f, 1.f) * 255.0,
			rcg->randomInRange(0.f, 1.f) * 255.0
			);
		cvLine(img, cvPoint(col, 0), cvPoint(col, 100), color, 4);
	}
	cvShowImage("随机色", img);

	// 介于颜色A和颜色B之间的随机渐变色
	for (int col = 0; col < img->width; col +=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值