How to solve the error?

조회 수: 1 (최근 30일)
Darsana P M
Darsana P M 2018년 4월 7일
편집: Walter Roberson 2018년 4월 7일
I am trying to do hide 1 image within another. While performing this, I got an error. What might be the issue?
numberOfBitsOfBitsToBeInserted exceeds totalSizeOfdataTargetBitSpaceInsertable
Error in insertIntoLSB_bits (line 8)
numberOfBitsToBeInserted = length(dataToBeInsertedInBits);
Output argument "dataInDec_WithInsertedBits" (and maybe others) not
assigned during call to "insertIntoLSB_bits".
Error in usage_imageWithinImage (line 20)
dataInDec_WithInsertedBits = insertIntoLSB_bits(dataInDecMasked,
bitStreamOfImageToHide, N );
How to solve this error?

답변 (1개)

Walter Roberson
Walter Roberson 2018년 4월 7일
편집: Walter Roberson 2018년 4월 7일
Normally the first of those errors would have stopped the program and you would not have seen the others. However, if you happen to be within the debugger, then sometimes when you dbquit it tries to run further and gives some additional errors.
For the moment, you should change your code so that you always assign a value to the output argument inside insertIntoLSB_bits, even if the value is [] or inf or nan. Like, pretty much assign to it as the first thing you do.

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by