Skip to content
Snippets Groups Projects
Commit 1f39d048 authored by d.kilic's avatar d.kilic Committed by d.kilic
Browse files

reviewer comments

parent bc1e9dc3
No related branches found
No related tags found
1 merge request!110Resolve "Raise warning level and fix warnings on MSVC"
Pipeline #38653 passed
......@@ -75,8 +75,8 @@ void CodeMarkerItem::paint(QPainter *painter, const QStyleOptionGraphicsItem */*
if (mMainWindow->getCodeMarkerWidget()->showDetectedCandidates->isChecked())
{
size_t nMarkers = mCorners.size();
size_t nRejected = mRejected.size();
int nMarkers = static_cast<int>(mCorners.size());
int nRejected = static_cast<int>(mRejected.size());
cv::Point2f p0, p1;
for(int i = 0; i < nMarkers; i++) // draws green square/ circle around head if person recognized
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment