필터 지우기
필터 지우기

Matlab HDL coder can not perform to send an image matrix to a matlab function.How to resolve it?

조회 수: 1 (최근 30일)
--------------------------------------Function which is called--------------------------------------
function [xavg1,xavg,xhr,xvr,xdig] = cameraman_dwt_code1(xr1)
[xavg,xhr,xvr,xdig] = dwt2(xr1,'db3');
xavg1=xavg/255;
--------------------------------------Testbench Code--------------------------------------
x= imread('cameraman.tif');
x1=rgb2gray(x);
xavg11=cameraman_dwt_code1(x1);
imshow(xavg11);

채택된 답변

Kiran Kintali
Kiran Kintali 2019년 12월 21일
'mlhdlc_heq.m' (DUT) and 'mlhdlc_heq_tb.m' (TestBench)
The example files show how to stream image into device under test (DUT). The example shows how to write MATLAB code suitable for HDL code generation for such streaming algorithms.

추가 답변 (0개)

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by