刚刚写的一个将图像的某个区域之外的区域变暗的函数

2024-02-12 06:18

本文主要是介绍刚刚写的一个将图像的某个区域之外的区域变暗的函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

DelphiCode:
{-------------------------------------------------------------------------------
过程名:    DarkBmp
作者:      不得闲
日期:      2009.02.04
参数:      bmp: TBitmap;var DarkRect: TRect;const DarkValue: Integer;const HighValue: Integer = 0
DarkRect指定不变暗的区域
DarkValue: 指定暗化的数量值
HighValue: 指定矩形区域增亮化的数量值
功能:     将图像的某个区域之外的区域变暗的函数
返回值:    无
-------------------------------------------------------------------------------}
procedure DarkBmp(bmp: TBitmap;var DarkRect: TRect;const DarkValue: Integer;const HighValue: Integer = 0);
var
i,j : integer;
pB : PByteArray;
BmpFormatXs: Integer;
w,h:Integer;
begin
i := Integer(bmp.PixelFormat);
if i < 4 then
i := 4
else if i = 4 then
inc(i)
else if i > 7 then
i := 7;  
BmpFormatXs := i - 3;
w:= DarkRect.Right - DarkRect.Left;
h:= DarkRect.Bottom - DarkRect.Top;
if DarkRect.Right > bmp.Width then
begin
DarkRect.Left:=bmp.Width - w;
DarkRect.Right:=bmp.Width;
end;
if (DarkRect.Bottom > bmp.Height) then
begin
DarkRect.Top:= bmp.Height - h;
DarkRect.Bottom:=bmp.Height;
end;
if DarkRect.Left <0 then
begin
DarkRect.Left:=0;
DarkRect.Right:=w;
end;
if DarkRect.Top <0 then
begin
DarkRect.Top:=0;
DarkRect.Bottom:=h;
end;
for i := 0 to DarkRect.Top - 1 do
begin
pb:=bmp.ScanLine[i];
for j:=0 to BmpFormatXs*bmp.Width - 1 do
if pb[j]then
pb[j]:=0
else dec(pb[j],DarkValue);
end;
for i := DarkRect.Top to bmp.Height - 1 do
begin
pb:=bmp.ScanLine[i];
for j:=0 to BmpFormatXs*DarkRect.Left - 1 do
if pb[j]then
pb[j]:=0
else dec(pb[j],DarkValue);
end;
for i := DarkRect.Bottom to bmp.Height - 1 do
begin
pb:=bmp.ScanLine[i];
for j:= BmpFormatXs*DarkRect.Left to BmpFormatXs*bmp.Width - 1 do
if pb[j]then
pb[j]:=0
else dec(pb[j],DarkValue);
end;
for i := DarkRect.Top to DarkRect.Bottom - 1 do
begin
pb:=bmp.ScanLine[i];
for j:= BmpFormatXs*DarkRect.Right to BmpFormatXs*bmp.Width - 1 do
if pb[j]then
pb[j]:=0
else dec(pb[j],DarkValue)
end;
if HighValue <> 0 then
for i := DarkRect.Top to DarkRect.Bottom - 1 do
begin
pb:=bmp.ScanLine[i];
for j:= BmpFormatXs*DarkRect.Left to BmpFormatXs*DarkRect.Right - 1 do
if pb[j]>(255-DarkValue) then
pb[j]:=255
else inc(pb[j],HighValue);
end;
end;
使用方法:
procedure TForm1.Button1Click(Sender: TObject);
var
bmp: TBitmap;
r: TRect;
begin
bmp := TBitmap.Create;
bmp.Assign(Image1.Picture.Bitmap);
r := Rect(0,0,50,50);
DarkBmp(bmp,r,40,10);
Image2.Picture.Bitmap := bmp;
end;

这篇关于刚刚写的一个将图像的某个区域之外的区域变暗的函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/701858

相关文章

基于WinForm+Halcon实现图像缩放与交互功能

《基于WinForm+Halcon实现图像缩放与交互功能》本文主要讲述在WinForm中结合Halcon实现图像缩放、平移及实时显示灰度值等交互功能,包括初始化窗口的不同方式,以及通过特定事件添加相应... 目录前言初始化窗口添加图像缩放功能添加图像平移功能添加实时显示灰度值功能示例代码总结最后前言本文将

Oracle的to_date()函数详解

《Oracle的to_date()函数详解》Oracle的to_date()函数用于日期格式转换,需要注意Oracle中不区分大小写的MM和mm格式代码,应使用mi代替分钟,此外,Oracle还支持毫... 目录oracle的to_date()函数一.在使用Oracle的to_date函数来做日期转换二.日

C++11的函数包装器std::function使用示例

《C++11的函数包装器std::function使用示例》C++11引入的std::function是最常用的函数包装器,它可以存储任何可调用对象并提供统一的调用接口,以下是关于函数包装器的详细讲解... 目录一、std::function 的基本用法1. 基本语法二、如何使用 std::function

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

hdu1171(母函数或多重背包)

题意:把物品分成两份,使得价值最接近 可以用背包,或者是母函数来解,母函数(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v)(1 + x^v+x^2v+.....+x^num*v) 其中指数为价值,每一项的数目为(该物品数+1)个 代码如下: #include<iostream>#include<algorithm>

C++操作符重载实例(独立函数)

C++操作符重载实例,我们把坐标值CVector的加法进行重载,计算c3=c1+c2时,也就是计算x3=x1+x2,y3=y1+y2,今天我们以独立函数的方式重载操作符+(加号),以下是C++代码: c1802.cpp源代码: D:\YcjWork\CppTour>vim c1802.cpp #include <iostream>using namespace std;/*** 以独立函数

函数式编程思想

我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)

利用matlab bar函数绘制较为复杂的柱状图,并在图中进行适当标注

示例代码和结果如下:小疑问:如何自动选择合适的坐标位置对柱状图的数值大小进行标注?😂 clear; close all;x = 1:3;aa=[28.6321521955954 26.2453660695847 21.69102348512086.93747104431360 6.25442246899816 3.342835958564245.51365061796319 4.87

OpenCV结构分析与形状描述符(11)椭圆拟合函数fitEllipse()的使用

操作系统:ubuntu22.04 OpenCV版本:OpenCV4.9 IDE:Visual Studio Code 编程语言:C++11 算法描述 围绕一组2D点拟合一个椭圆。 该函数计算出一个椭圆,该椭圆在最小二乘意义上最好地拟合一组2D点。它返回一个内切椭圆的旋转矩形。使用了由[90]描述的第一个算法。开发者应该注意,由于数据点靠近包含的 Mat 元素的边界,返回的椭圆/旋转矩形数据

Unity3D 运动之Move函数和translate

CharacterController.Move 移动 function Move (motion : Vector3) : CollisionFlags Description描述 A more complex move function taking absolute movement deltas. 一个更加复杂的运动函数,每次都绝对运动。 Attempts to