필터 지우기
필터 지우기

blockproc error...

조회 수: 2 (최근 30일)
remo
remo 2012년 2월 29일
hi all,
i have cropped an image to be 162x125 ...i want to pass it to blockproc function which divide image to 3x3 and do some processing...since, the cropped image doesnt satisfy 3x3 mask it gives error during blockproc function.
So,is there anyway to rectify this problem?
i cannot alter cropped image size since it is automatically done using another function (face image). And i cannot change the block size since Local Binary Pattern operate in 3x3 neighbourhood only..
  댓글 수: 1
Ashish Uthama
Ashish Uthama 2012년 3월 30일
doesnt the padding option in blockproc help?

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2012년 2월 29일
padding = zeros(162,1,class(YourImage));
padding = padding + realmax; %saturate it in a class-dependent way
paddedImage = [YourImage, padding];
Now run blockproc() over paddedImage, and have fun making sense of the LPB at the right-hand edge.
  댓글 수: 1
remo
remo 2012년 3월 1일
Sir,
thank you for ur time in answering my question.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by