u++の備忘録

2017-10-18から1日間の記事一覧

「日本人クラス」を作って、Pythonのクラスの使い方を復習

Pythonのクラスの使い方を忘れかけていたので、下記ページを参考に「日本人クラス」を作ってみました。www.sejuku.net #!/usr/bin/env python3 # -*- coding: utf-8 -*- class Japanese(): def __init__(self, name, sex, age): self.name = name self.sex =…

【論文メモ】Sushi Dish - Object detection and classification from real images

論文名 Yeongjin Oh, Seunghyun Son, Gyumin Sim: Sushi Dish - Object detection and classification from real images, arXiv:1709.00751v2 [cs.CV], 2017. https://arxiv.org/abs/1709.00751 どんなもの? 回転寿司の会計では、店員が目視で皿の枚数を数…