Converting mean(mean(image)) of image into c
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!