Which category of (MATLAB) function type do these MATLAB commands fall in?

조회 수: 1 (최근 30일)
medfilt2; imopen; ginput; imadjust; imsubtract ;imcontrast; mmreader; imshow; imcontour; cpselect; imagesc;
....these are all the commands I used to develop a code for my project.
In my project review, there is a place where I have to say "I used __ functions on MATLAB to eliminate the background noise and make the cell clear against the background"...what could I use to fill in this blank?....the word required should tell us the broad category under which these commands fall...e.g* 'image filtering'*

채택된 답변

Walter Roberson
Walter Roberson 2012년 6월 14일
I distinctly remember responding last night, but I don't see that now??
ginput is a GUI input function.
mmreader is a file I/O function.
Neither of those could be considered as being image processing functions.
medfilt2 is broadly a signal processing function, but it is used often enough with image processing that calling it an image processing function would not be wrong.
Everything else could be classified as an image processing function.
imopen is a morphological operator. Broadly speaking that is a kind of filtering, but it would not usually be referred to that way.
imadjust and imcontrast are gamma curve operations and I would not call them filtering operations.
  댓글 수: 3
Walter Roberson
Walter Roberson 2012년 6월 15일
Keep in mind that the question is only asking about the part of the activity that involves reducing noise. mmreader() for example is not involved in the part of the algorithm that reduces noise.
Yagnaseni Roy
Yagnaseni Roy 2012년 6월 16일
oh...so according to my sentence, it wouldn't be too bad to write 'filtering functions'...could I by any chance write gaussian filtering?

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

추가 답변 (1개)

Jonathan Koay
Jonathan Koay 2012년 6월 14일
The toolbox name is pretty much the category name for the function type.
Tips: Just type the function name (i.e. mediflt2) in the Documentation Center's search box and you will see the toolbox name.
All the best!
  댓글 수: 2
Yagnaseni Roy
Yagnaseni Roy 2012년 6월 14일
I followed what you said (and it said 'image processing tool box), but it would be nice to use some more specific terms for the report....how about 'filtering functions'?
medfilt2; imopen; imadjust; ;imcontrast; are the most important functions I used and they are all responsible for image filtering, right?
Sean de Wolski
Sean de Wolski 2012년 6월 14일
Depends on your definition of "filtering" but more or less yes.

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by