Converting mean(mean(image)) of image into c

1 回表示 (過去 30 日間)
Muhammad Hilmi Azman
Muhammad Hilmi Azman 2019 年 5 月 19 日
I am new to matlab and I want to know how do i write the fuction of matlab imread, rgb2gray & mean(mean(image)) into c

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 5 月 19 日
im=imread('iamge_file_name.jpg');
grayImage=rgb2gray(image1);
result=mean(grayImage);
C Code Generation from MATLAB check here
Regarding Matlab function
function output=fun_name(inputs)
......do
..do
end
  1 件のコメント
Muhammad Hilmi Azman
Muhammad Hilmi Azman 2019 年 5 月 19 日
I have this code in matlab:
img = imread ('test.jpg');
I = rgb2gray(img);
meanIntensityValue = mean(mean(I));
[rows, columns, depth]=size(I);
In order to convert the script so I just need to copy this to the fuction like:
function output=fun_name(inputs)
img = imread ('test.jpg');
I = rgb2gray(img);
meanIntensityValue = mean(mean(I));
[rows, columns, depth]=size(I);
end

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB Coder についてさらに検索

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by