plz help me to write code for this formula

4 件のコメント

KSSV
KSSV 2018 年 10 月 9 日
What is I? matrix or constant?
Adam
Adam 2018 年 10 月 9 日
Usually when people ask to 'help me to...' it means you have done something and want people to help you make it correct rather than just a 'Please do it all for me' question.
As formulae go that one looks very easy to implement. what part of it is causing problems?
zakir khan
zakir khan 2018 年 10 月 9 日
for rgb image Normalization i am trying to use this Normalization formula but there is error how i cam implement it on my rgb image
i=imread('05.jpg'); >> alpha=mean( i ); beta=std(double(i));
(0 - 1) * (1/(1+exp((-1-beta)/alpha)) + 1);
Adam
Adam 2018 年 10 月 9 日
alpha and beta will be vectors with that formulation.
You would need to use
alpha = mean( double( i(:) ) );
beta = std( double( i(:) );
to get scalar values for these.

回答 (0 件)

この質問は閉じられています。

質問済み:

2018 年 10 月 9 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by