From 62c0f4bc71530c34e225ef785e67de465b20e46f Mon Sep 17 00:00:00 2001 From: lltcggie Date: Sat, 1 Dec 2018 15:03:16 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/stImage.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/stImage.cpp b/common/stImage.cpp index bd83fd3..8f9b601 100644 --- a/common/stImage.cpp +++ b/common/stImage.cpp @@ -744,10 +744,6 @@ void stImage::DeconvertFromNetFormat(const int input_plane) void stImage::ShrinkImage(const Factor scale) { - // TODO: scale = 1.0 でも悪影響を及ぼさないか調べる - - const int scaleBase = 2; // TODO: モデルの拡大率によって可変できるようにする - const auto Width = scale.MultiNumerator(mOrgSize.width); const auto Height = scale.MultiNumerator(mOrgSize.height); @@ -765,8 +761,6 @@ void stImage::ShrinkImage(const Factor scale) void stImage::ShrinkImage(const int width, const int height) { - // TODO: scale = 1.0 でも悪影響を及ぼさないか調べる - const cv::Size_ ns(width, height); if (mEndImage.size().width != ns.width || mEndImage.size().height != ns.height) {