What is a binary classifier and how to create it?
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have to create binary classifier based on multiple features, like Intensity, Position, etc. I am new to matlab, and dont know what exactly a binary classifier is? How can I create a binary classifier using two or more features?
I am not sure but, does it mean a matrix which values are 1 (true) for only those pixels which satisfy the given range of intensity and predefined given area in image?
Or here two binary classifiers will be created, one for intensty and one for position?
Please help me to understand the concept and how can I do this.
2 Kommentare
Adam
am 28 Jan. 2016
Bearbeitet: Adam
am 28 Jan. 2016
In simplest terms a binary classifier is just something that classifies a group of objects into one of two defined sets according to some rule or other.
Depending on the specific binary classifier this could be simple or very complex.
e.g. a simple classifier would be heads/tails for tossing a coin. Every coin toss will result in one or the other
a more complex binary classifier might be one with a logical expression defining the sets based on combination of numerous criteria.
e.g. A group is defined by all objects for with a > 10 && b < 6 && z == true
for some numeric properties a and b and logical property z of each object.
How to create one depends entirely on what you want it to classify.
Antworten (1)
Image Analyst
am 28 Jan. 2016
It sounds kind of like you're talking about logistic regression. In statistics, logistic regression, or logit regression, or logit model is a regression model where the dependent variable is categorical. Binary dependent variables are where your variable can take only two values, such as pass/fail, win/lose, alive/dead, healthy/diseased, or cartilage/non-cartilage. You can have more than two categories though, like cartilage/bone/other tissue/air.
Let us know if that's the situation.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!