Hi..i am trying to use the function "blockproc" for histogram equalization of an image blockwise...but i am gettin an error....
2 ビュー (過去 30 日間)
古いコメントを表示
a = imread('C:\Users\Public\Pictures\Sample Pictures\image14.jpg');
a = rgb2gray(a);
b = blockproc(a,[8,8],histeq);
Error using histeq (line 64)
Not enough input arguments.
%%this code was generated by the matlab where error was detected
narginchk(1,3);
NPTS = 256;
isIntensityImage = false;
if nargin == 1
%HISTEQ(I)
validateattributes(a,{'uint8','uint16','double','int16','single'}, ...
{'nonsparse','2d'}, mfilename,'I',1);
0 件のコメント
採用された回答
Dishant Arora
2014 年 2 月 27 日
fun = @(block_struct) histeq(block_struct.data)
b = blockproc(a,[8,8],fun);
3rd input to blockproc must be a function handle.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!