필터 지우기
필터 지우기

image processing in tms6713dsk

조회 수: 1 (최근 30일)
Anusha
Anusha 2013년 5월 26일
Hi...I want to do histogram equalisation in 6713 dsk.for that how can I load the image,or how to convert nxm dimension image to 1D array...

답변 (1개)

Image Analyst
Image Analyst 2013년 5월 26일
For histogram equalization, use histeq() or adapthisteq(), both in the Image Processing Toolbox. To load an image, use imread(). To convert into a 1D array, just do
array1D = array2D(:);
or use the reshape() function.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by