what is the best methodology to detect playing cards?

19 ビュー (過去 30 日間)
philip curran
philip curran 2022 年 3 月 21 日
コメント済み: Image Analyst 2022 年 4 月 18 日
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 件のコメント
philip curran
philip curran 2022 年 4 月 18 日
this seems to be the most accurate method of detecting the value of each card (by creating my own language in the OCR trainer) compared to other solutions given in the responses to this post.
Image Analyst
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
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 件のコメント
philip curran
philip curran 2022 年 3 月 23 日
please can you explain what hu and lbp are? I would like to avoid using cnn to train the data as i have a relatively low sample size of my data.
yanqi liu
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

サインインしてコメントする。


Image Analyst
Image Analyst 2022 年 3 月 24 日
You could use normalized cross correlation. See attached demo.

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by