对数变换
图像对数变换(Logarithmic Transformation)是一种非线性灰度变换方法,常用于增强图像中的细节,特别是在图像中存在较大的亮度范围时。对数变换通过压缩亮度范围,使得较暗区域的细节更加明显,同时抑制过亮区域的影响。它在图像处理中的应用非常广泛,特别是在医学图像处理和远程感知图像处理中。
公式:s=c*log(1+r)
FPGA实现
`timescale 1ns / 1ps
//
// Company:
// Engineer:
//
// Create Date: 2024/08/18 01:09:36
// Design Name:
// Module Name: img_log
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//
module img_log#(
parameter C = 2 //整数系数
)(
input clk ,
input rst ,
input [ 23: 0] img_data_i ,
input
标签:fpga,img,图像处理,input,Name,对数变换,log
From: https://blog.csdn.net/weixin_62953178/article/details/141290002