hello I am working on person recognition, I would like to get the score for each tested sample (image) from a multi-class SVM classification. I am using c# and EmguCv. Any help will be appreciated.
get the score from a multi-class SVM classifier using emgu cv and c#
787 Views Asked by user3339324 At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in SVM
- Feature selection SVM-Recursive Feature elimination (SVM-RFE) with Libsvm, the accuracy result is worse than without feature selection, why?
- How to interpret scikit's learn confusion matrix and classification report?
- must a dataset contain all factors in SVM in R
- Unable to run the method fit for svm (by scikit-learn)
- Cannot train KSVM in R
- R - One Class SVM classification with multiple predictions
- How to parallelize the training of an SVC with RBF kernel through MapReduce in scikit-learn for Python
- OpenCV HOG+SVM: assertion failed checkDetectorSize()
- SVM is not generating forecast using R
- Right function for normalizing input of sklearn SVM
- SVM in R language
- How can I train SVM in Matlab, with more than 2 classes
- Support vector machine in Python using libsvm example of features
- Support Vector Machine in Torch7
- Understanding an linear classification SVM
Related Questions in EMGUCV
- Emgu cv invoke exception c#
- EmguCV: Draw contour on object in Motion using Optical Flow?
- How to call OpenCV's MatchTemplate method from C#
- Passing a class as IntPtr
- How to capture image from four cameras when you have only three usb ports in the laptop using C# and Emgucv?
- How to detect black Bullets in Image?
- Using Seq in emgu c#
- How to capture video stream using emgu cv
- How do EmguCV detectors relate to EmguCV DescriptorExtractors?
- Emgu vb.net cvCalcCovarMatrix - covariance matrix empty
- Creating a chessboard mask to check the status of the squares on a chessboard
- Find corners from contour and warp perspective
- get the score from a multi-class SVM classifier using emgu cv and c#
- Emgu CV, unable to add Image to Matrix for KNN training
- emgucv performance issue with video playback
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Only way - reduild OpenCV and get all votes from it. You can see it in file "svm.cpp". I add this code in predict function:
And this code in PredictBody
So, i take back all needed votes from opencv. But, as you can see from svm.cpp there is no normal way to do it.