필터 지우기
필터 지우기

hwo to normalise the points with matlab command

조회 수: 1 (최근 30일)
praveen rai
praveen rai 2017년 9월 22일
댓글: Star Strider 2017년 9월 25일
i am using this command for normalising -[p1,t1] = Normalise2DPts(p1); [p2,t2] = Normalise2DPts(p2); when i am running this in matlab it gives me this error- Undefined function or variable 'Normalise2DPts' can any one help me what command should i use or i am doing error p1 and p2 are p1 and p2 are 2xN matrix
  댓글 수: 3
praveen rai
praveen rai 2017년 9월 25일
https://in.mathworks.com/matlabcentral/fileexchange/47032-camera-geometry-algorithms?focused=3822623&tab=function in this link there is code from where i copied
Star Strider
Star Strider 2017년 9월 25일
See my Answer for relevant details.

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

답변 (1개)

Star Strider
Star Strider 2017년 9월 22일
The function you want is in the File Exchange: normalise2dpts(pts) (link). You can download it through the linked page.
Also, MATLAB is case sensitive, so you will have to call it as:
[p2,t2] = normalise2dpts(p2);
  댓글 수: 3
José-Luis
José-Luis 2017년 9월 22일
편집: José-Luis 2017년 9월 22일
Are you running it from the folder you downloaded it to? Did you add that folder to the path?
Star Strider
Star Strider 2017년 9월 22일
You have to download it and copy it to your MATLAB user path. In Windows, this is: ‘C:\Users\-UserName-\Documents\MATLAB\’. Then you should be able to use it.

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

카테고리

Help CenterFile Exchange에서 Downloads에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by