⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 brightness_variation.m

📁 The aip file contains few Matlab routines for 1D line scan analysis, 1D scaling, 2D scaling, image b
💻 M
字号:
function [out_img] =  brightness_variation(input_image,Num_of_Rows, Num_of_Cols)

%% This function adds a scalar value to all the pixels to increase the
%% brightness depending on the existing maximum intensity value

%%%% Brightness Variation of the Image %%%%%%%%%%%
    
min_value = min(min(input_image));
max_value = max(max(input_image));

thr_value = 255 - max_value ; 
    
    for i = 1 : Num_of_Rows
        for j = 1 : Num_of_Cols
                out_img(i,j) = input_image(i,j) + thr_value ;
        end
    end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -