mipicm2dmr.m image processing tool

조회 수: 1 (최근 30일)
M
M 2014년 7월 20일
댓글: M 2014년 7월 20일
I have been applying ICM on my images using this code
IMG = MD;
ICM_IMG = im2uint8(IMG);
ICM_IMG = mipicm2dmr(IMG,ICM_IMG, I, 0, 10 );
ICM_IMG = ICM_IMG - 1;
and MATLAB gives me the error
Undefined function or method 'mipicm2dmr' for input arguments of type 'uint8'
I have been looking for the parameters list of mipicm2dmr to check, but cannot find it anywhere, HELP

채택된 답변

Wayne King
Wayne King 2014년 7월 20일
As Image Analyst correctly indicates, that is not a MathWorks' function. Perhaps that function comes from this book:
If that is the case, then you need to download the files associated with that book and then ensure the folder containing the files is added to the MATLAB path.
See addpath() or enter
pathtool
  댓글 수: 1
M
M 2014년 7월 20일
YES YES! Silly me! was working on different computer and forgot to check the file in that path.. Problem solved.. Thank you :)

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

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 7월 20일
Why do you think you should have a function called that? I don't. What is ICM and dmr?
  댓글 수: 1
M
M 2014년 7월 20일
ICM is iterated conditional modes, which i'm using as a clustering technique for my diffusion tensor imaging (DTI) pixels, to group pixels according to intensity, and then do the intended work.

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

Community Treasure Hunt

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

Start Hunting!

Translated by