what is the best methodology to detect playing cards?
조회 수: 11 (최근 30일)
이전 댓글 표시
i am trying to detect the suit and value of a playing card, OCR doesn't work for this problem, however i suspect i should use the image labeller app within matlab to label the ground truth data for each card. Any ideas of where to go from here?
댓글 수: 3
Image Analyst
2022년 4월 18일
I think using Deep Learning CNN clasification would be another option to consider if you have lots of different card face styles that you need it to work on.
답변 (2개)
yanqi liu
2022년 3월 22일
yes,sir,may be use hu,lbp or other feature to classify,or just use cnn to train data
댓글 수: 2
yanqi liu
2022년 3월 24일
yes,sir,for example,we get lbp feature vector,such as
clc; clear all; close all;
im = rgb2gray(imread('football.jpg'));
v1 = extractLBPFeatures(im,'Upright',false);
im = imread('rice.png');
v2 = extractLBPFeatures(im,'Upright',false);
then use them to svm or bp to make classify model
if data not enough,may be use imageDataAugmenter to extend
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!