Skip to content

Commit bb9462a

Browse files
committed
Trailing Whitespaces Fix
1 parent ea34e1e commit bb9462a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/tracking/src/gtrTracker.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ namespace cv
163163

164164
dnn::Blob targetBlob = dnn::Blob(targetPatch);
165165
dnn::Blob searchBlob = dnn::Blob(searchPatch);
166-
166+
167167
net.setBlob(".data1", targetBlob);
168168
net.setBlob(".data2", searchBlob);
169169

@@ -177,7 +177,7 @@ namespace cv
177177
curBB.y = targetPatchRect.y + (resMat.at<float>(1) * targetPatchRect.height / INPUT_SIZE) - targetPatchRect.height;
178178
curBB.width = (resMat.at<float>(2) - resMat.at<float>(0)) * targetPatchRect.width / INPUT_SIZE;
179179
curBB.height = (resMat.at<float>(3) - resMat.at<float>(1)) * targetPatchRect.height / INPUT_SIZE;
180-
180+
181181
//Predicted BB
182182
boundingBox = curBB;
183183

0 commit comments

Comments
 (0)