When i try to run the program.. mygradient requires more input arguments..!!! I tried to add.. I=imread('121.jpg'); before function statement..It says you cannot add nested functions here.. How to input the image for my function?? please help.
function [Fx,Fy]=mygradient(I) %correctig gradient on edges I=imadjust(I); [hcol,hrow]=size(I); temp= ones(hcol+2,hrow+2); temp(2:1+hcol,2:1+hrow)=I(:,:);
Fx=filter2([1;0;-1],temp); Fx=Fx(3:hcol,3:hrow); Fy=filter2([1;0;-1]',temp); Fy=Fy(3:hcol,3:hrow);

 채택된 답변

Image Analyst
Image Analyst 2015년 2월 22일
You can't have a function following a script in the same m-file. If your script is called test.m then you need to have
function test()
as the first line. It is okay to have two functions in the same m-file, but not a script and a function. Adding the function line converts your script into a function.

추가 답변 (1개)

Dima Lisin
Dima Lisin 2015년 2월 22일

0 개 추천

There is a built-in function for extracting hog features in the Computer Vision System Toolbox called extractHOGFeatures.

댓글 수: 1

Thank you very much Lisin..I was able to extract features of an image.

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

카테고리

도움말 센터File Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by